| |
| |
| |
|
Page: 1 2 3 4 5 6 7 8 9 10
Comments:
<0> hi <0> how do I get property of object inside object ? <0> print_r() returns stdCl*** Object <0> there I have [startSessionReturn] => stdCl*** Object <0> tried $result->startSessionReturn->ticket(); but it gives an error <1> I like ice cream <2> I like bacon. <0> oops sorry <0> too much coding <3> i like my icecream with bacon and strawberries <0> does it make sense ? $_SESSION["authDetails"] = serialize(new AuthenticationDetails($authResult->username, $authResult->ticket)); <0> why he serializes it ? <0> isn't session data already serialized ? <4> i like ice cream too <4> strawberry flavour <4> not sure about bacon flavoured ice cream
<4> but i do like bacon <4> i wonder if my GF would give me more oral if i wrapped the penix in bacon <5> peeves: it is <4> she likes bacon <3> just get a bottle of used frying oil and dip it <4> mm <4> not a bad idea <4> i can put it in a roll <4> and pretend its a bacon roll <4> for breajfast <4> breakfast even <6> buy a pig, and see if she gives it more head than you <0> madbovine then I don;t need serialize it, right ? <0> one more question: if I have $soap = new SoapClient($wsdl); <5> peeves: no you don't <0> and I need to use other service say $wsdl2 =other_service <0> should I instantiate another object ? <0> there about 6-7 services <0> i need most of them <5> hm, how would i go about removing all possible javascript code from user-input html? <5> my concern in onclick, onwhatever, no <script> stuff <7> use regex <5> brilliant. now... where can js be placed? <5> anywhere else besides onwhatever and <script>? <7> oh <7> well <7> in buttons <7> and <script> tags <7> and in the body tag <7> <script language="Javascript"> <8> It gets tough when you want to ban certain js functions... <7> well <5> well i'm likely only going to allow a few tags, such as a, b, i, u and other formatting shizzle <8> because people just concatenate and use eval() <7> here, what if you kill the script tags <5> i want to ban all js <7> and then just make an array of JS functions <7> and ban those <8> That shouldn't be too difficult. <5> killing the script tag is not the problem <9> hi @ all <8> Can a browser run any client scripting without <script> and the on* functions? <8> I think that covers it. <7> madbovine, i mean like this. remove onclick="displaymessage()" <7> madbovine, so filter out all the onClick and **** like that <5> i just want to make sure that by removing say, stuff like onclick="document.href = 'http://evil.site/'", there's no way of using js <5> [BK]Kix: yup, suppose i got that covered. <7> madbovine, well find a list of javascript **** (i'm looking for you) <7> madbovine, http://www.quirksmode.org/js/events_compinfo.html or http://www.quirksmode.org/dom/w3c_events.html <7> check those <7> madbovine, http://www.webaim.org/techniques/javascript/eventhandlers <3> weeee, im watching a progress bar <10> lucky bastard <10> god i gate documentation. no one's gonna read the bloody thing anyway <11> is it possible to put the if function with two criterias? <12> yes <11> how to write it plz? <12> if ((GecKo == "awesome") && (enormous == "lame")) {echo "**** YEAH!";} <11> k thx <11> lol
<12> if you replace && with || - That means if gecko = awesome OR enormous = lame, then do i t <12> rather than if both are true... <10> you can skip the brackets and save 4 bytes as well <12> ZOMG 4 BYTES ;\ <10> ya <10> no reason wasting space when there are poor kids in africa without hard drives! <12> Those same kids also have Aids <12> So I don't think it's much of a big deal really <11> {echo "**** YEAH!";} and if not? <11> just the code <4> kids with aids need hard drives you prick <4> how else are they going to store gay porn <4> inconsiderate ***hole <11> elseif still work here?? tx <13> umm, i have a question about mysql querys in php, should i take my business elsewhere? <14> ask and find out <14> :) <13> ok :) <13> $result = mysql_query("SELECT * FROM public_ui WHERE network = { $POST_['network']}", $link); <13> whats wrong with that <3> who says there is <13> my webpage :P <3> and it says ? <15> hmm, the array cant have ' in it <13> says my mysql_num_rows( $result); isnt valid <15> $_POST[network] then <3> echo mysql_error ? <13> ill try that xan <3> Xan^: thats bull**** and half-valid <15> ah, okay, maybe, i always get sql errors when i write ' inside an array variable in sql <3> and you get a notice if you dont <13> thats what i thought irzyxel <13> it didnt work <13> it still says the same thing <16> mysql_escape_string() <17> http://wiki.script.aculo.us/ <17> argh <16> $SQL = sprintf("SELECT * FROM public_ui WHERE network='%s'",mysql_escape_string($_POST['network'])); <16> print $SQL; <13> ok <16> $result = mysql_query($SQL,$link) or die("Unable to perform select: ".mysql_error()); <16> sans any typos <18> hey there, i need some help please... how do i find in php if i enter on a input field the number 83282342 (for example), the 1st digit of this number? thanks <10> read on substr and strpos <16> $field[0] <10> or that <10> ah yes strings are arrays :) <16> or... $_POST['fieldname <16> err <16> or... $_POST['fieldname'][0] <16> someone moved my enter key <10> damn goblins.. <16> damn am I sore... spending 5 hours cabling was not a good idea <10> cat5e? <18> thanks Freman <13> $result = mysql_query("SELECT * FROM public_ui WHERE network = $mysql_escape_string($_POST['network'])", $link); = Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/httpd/vhosts/my714.com/httpdocs/index.php on line 97 <16> for the love of god <16> just do as you're told <13> i thought that would work lol <16> you're always best to prepare your sql as a string first, means you can print it for debugging <13> ok <13> ahh i get it <19> Can anyone help me. I want to edit rows from my db but my script doesn't work, I pasted the code here: http://pastebin.com/714442 <19> anyone awake ? <13> $SQL = sprintf("SELECT * FROM public_ui WHERE nick = '%s' AND network='%s' AND ***='%s' AND age='%s'", mysql_escape_string($_POST['nick']), <13> mysql_escape_string($_POST['network']), mysql_escape_string($_POST['***']), mysql_escape_string($_POST['age'])); <13> umm ya, like iwas saying.. that line seems correct, but i put in the right stuff in my form but i got nothing <13> it was working before i added the other 3 specifiers <0> any soap gurus ? <0> how do I remove actor attribute ? <13> pfft can i remove a whole soap? <13> i wanna wipe clean sopanet <0> i have this for pear lib unset($securityHeader->attributes['SOAP-ENV:actor']); <13> soapnet
Return to
#php or Go to some related
logs:
undernet almighty sweetguy car suspenions
Abstream #AllNiteCafe fatbrain javascript -fatbrain.com -IRC easy enlighs #london WHAT IS THE STAGE NAME OF GRETA GUSTAFSON? #java IsValidReadPtr+C++
|
|