| |
| |
| |
|
Page: 1 2 3 4 5 6 7 8 9 10 11 12
Comments:
<0> Hey All <0> Can Anybudy Please tell me ... Whats PHP Stands for ? <0> I mean P H P .. whats these 3 words stands for .. The Complete Name from which these words derived from ? <0> or what IS PHP Derived from ? so anyone please <0> I guess nobudy Home right now ... grr <1> PHP: Hypertext Preprocessor <0> Are you sure these what PHP Stands for ? <1> php.net <1> and check <1> should've done that before asking here anyway <0> k .. take care <0> c u <0> ba baye <2> does anyone see anything wrong with this sql query: <2> select id,sendername,mdate,mtime,msubject,mseen from MemoBox where rid = 10 Order by mdate desc mtime desc Limit 0,10 <2> i get.. error on mysql_query($query);
<1> what error. <1> i believe order by needs , <2> oops <2> :) <2> bah.. too many hours have i been programing :) <2> @google krayot net <3> Search results for krayot net: <3> http://www.jobnet.co.il/pls/aaci/listp?type=0&l=1&cid=5936 <3> http://www.democratic-edu.org/International/SchoolList/NewGroupsList.aspx <3> http://english.katif.net/index.php?id=830&sub=2 <3> http://www.zchor.org/zamosc/zamosc.htm <3> http://www.homepokergames.com/israel.php <3> http://www.google.com/search?hl=en&ie=ISO-8859-1&q=krayot+net&btnG=Google+Search <2> why do i get an error: stripos undefined function? <2> if (($memocount > 0) && (stripos($_SESSION['Curl'],'MemoBox') === FALSE)) <1> @stripos! <3> (PHP 5) <3> int stripos ( string haystack, string needle [, int offset] ) <3> Find position of first occurrence of a case-insensitive string <3> http://www.php.net/stripos <2> well yeah... i kinda checked it <2> ohh. it's valid for php 5 only <2> ? <1> nod <2> i think my version is 4.something <4> how do i print the " character ? <5> \" <4> thanks <6> dw_Inf.fn('\x64\x77\x5f\x49\x6e\x66\x2e\x67\x77\x3d\x64\x77\x5f\x49\x6e\x66\x2e\x67\x77\x2e\x68\x6f\x73\x74\x6e\x61\x6d\x65'); <6> any idea son how i can decode that? <7> sure <7> it's in hex <7> convert to decimal then to ascii <8> remove \x things <6> ok <8> + chr(base_convert('64',16,10)); <8> got the idea ? <7> @hex2bin! <3> Failed to find definition for hex2bin! <6> i beleive so <7> er <7> i thought that existed <7> @bin2hex! <3> (PHP 3 >= 3.0.9, PHP 4, PHP 5) <3> string bin2hex ( string str ) <3> Convert binary data into hexadecimal representation <3> http://www.php.net/bin2hex <6> it does <9> @*hex* <6> @hex2bin <3> Functions matching *hex*: <3> bin2hex(), dechex(), hexdec() <3> Did not find any matches for hex2bin <3> Possible matches (best first): <3> bin2hex, bindec, decbin, dechex, define, defined, exif_tagname, exit, hebrev, hebrevc, hexdec, hw_info, maxdb_info, maxdb_init, maxdb_ping, phpinfo, phpversion, rewind, socket_bind, textdomain <6> maybe not <6> bleh' <8> :D <8> damn nice php, all already there... <10> hmm <6> !php $a = str_replace("\x","","\x64\x77\x5f\x49\x6e\x66\x2e\x67\x77\x3d\x64\x77\x5f\x49\x6e\x66\x2e\x67\x77\x2e\x68\x6f\x73\x74\x6e\x61\x6d\x65"); echo $a;
<11> dw_Inf.gw=dw_Inf.gw.hostname <6> ... <9> lol <8> ? <7> oh yeah <8> how come ? <8> ah... yeah... <8> LoL <9> @php $string = "\x64\x77\x5f\x49\x6e\x66\x2e\x67\x77\x3d\x64\x77\x5f\x49\x6e\x66\x2e\x67\x77\x2e\x68\x6f\x73\x74\x6e\x61\x6d\x65"; print $string; <3> Result: dw_Inf.gw=dw_Inf.gw.hostname <6> cause im a genius <9> @php $string = '\x64\x77\x5f\x49\x6e\x66\x2e\x67\x77\x3d\x64\x77\x5f\x49\x6e\x66\x2e\x67\x77\x2e\x68\x6f\x73\x74\x6e\x61\x6d\x65'; print $string; <3> Result: \x64\x77\x5f\x49\x6e\x66\x2e\x67\x77\x3d\x64\x77\x5f\x49\x6e\x66\x2e\x67\x77\x2e\x68\x6f\x73\x74\x6e\x61\x6d\x65 <8> ansimation no we not... both of us is wrong <8> spox is correct <6> still <6> i got what i was looking for <6> dw_Inf.gw=dw_Inf.gw.hostname <11> ))alert(dw_Inf.mg); <6> that's what i needed <6> :D <1> ? <6> eh <6> hackin up some js from dyn-web.com to get rid of some stupid popup ****. <1> ou. <1> so that is it. <1> those hex in my log. <1> :o <6> heh <6> how could i convert text to hex? <1> @*hex* <3> Functions matching *hex*: <3> bin2hex(), dechex(), hexdec() <1> =p <1> @hexdec! <3> (PHP 3, PHP 4, PHP 5) <3> number hexdec ( string hex_string ) <3> Hexadecimal to decimal <3> http://www.php.net/hexdec <1> err dechex <1> heh <6> !php echo dechex('poo babies'); <11> 0 <6> !php echo hexdec('poo babies'); <11> 47806 <9> @php function foo($string){ $s = str_split($string); $a = ''; foreach($s as $c) $a .= dechex(ord($c)); return $a; } print foo("**** you"); <3> Result: 6675636b20796f75 <9> @php function foo($string){ $s = str_split($string); $a = ''; foreach($s as $c) $a .= '\x'.dechex(ord($c)); return $a; } print foo("**** you"); <3> Result: \x66\x75\x63\x6b\x20\x79\x6f\x75 <6> !php echo "\x66\x75\x63\x6b\x20\x79\x6f\x75"; <11> **** you <6> true <6> str_split() must be new in php5 <6> ? <9> yeah <9> it just breaks the string into an array <6> i wonder how time consuming it would be to update to php5 <9> @php function foo($string){ $a = ''; for($i = 0; $i < strlen($string); $i++) $a .= '\x'.dechex(ord($string[$i])); return $a; } print foo("**** you"); <3> Result: \x66\x75\x63\x6b\x20\x79\x6f\x75 <9> same thing <9> php4 compatible <6> yea <1> lololol <6> php5 isnt even in the debian package list yet <6> ;/ <9> it's in unstable <7> there should be an ftp_error() <7> i have no idea what's going wrong <12> hi,selam... <7> salami 2 u 2 <13> ugh <13> someone mopped my office with nasty mop water <13> it stinks in here <7> haha
Return to
#php or Go to some related
logs:
#allnitecafe ima turn you out #allnitecafe donettello #india #vb #chat-world php errors Notice: Use of undefined constant HTTP_HOST
Gorge Carlen
#kl
|
|