@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info
Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet
Page: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19



Comments:

<0> what do you need?
<1> htmlspecialchars?
<2> @html_entity_decode
<3> (PHP 4 >= 4.3.0, PHP 5)
<3> string html_entity_decode ( string string [, int quote_style [, string charset]] )
<3> Convert all HTML entities to their applicable characters
<3> http://www.php.net/html-entity-decode
<1> !php echo htmlspecialchars('"');
<4> &quot;
<1> !php echo htmlspecialchars(' ');
<4>
<2> !php print html_entity_decode("&#39");
<4> &#39
<2> !php print html_entity_decode("&#146");
<4> &#146
<5> pwned



<2> !php print html_entity_decode("&amp;");
<4> &
<0> hehe
<2> !php print html_entity_decode("&#36;");
<4> $
<0> missing ; no?
<2> !php print html_entity_decode("&#39;");
<4> &#39;
<2> !php print html_entity_decode("&#146;");
<4> &#146;
<2> wtf?
<0> hehhe
<2> !php print html_entity_decode("&#37;");
<4> %
<2> !php print html_entity_decode("&#30;");
<4>
<2> !php print html_entity_decode("&#12;");
<4>
<2> !php print html_entity_decode("&#14;");
<4>
<2> i'm just gonna go down the dang list at this rate
<2> ascii chart says &#39
<1> as soon as i add some reges or limit the output on wigga i'll enable it int he other chan
<1> so you ****s tards dont run infinate loops and ****
<1> -s
<2> lol
<2> @hex_decode!
<3> Failed to find definition for hex_decode!
<2> @hex_decode
<3> Did not find any matches for hex_decode
<3> Possible matches (best first):
<3> hexdec, base64_decode, base64_encode, checkdate, convert_uudecode, exec, expect_popen, explode, gzencode, html_entity_decode, pdo_errorcode, rawurldecode, recode, session_decode, ssh2_exec, urldecode, urlencode, utf8_decode, xmlrpc_decode, xmlrpc_encode
<2> @hexdec!
<3> (PHP 3, PHP 4, PHP 5)
<3> number hexdec ( string hex_string )
<3> Hexadecimal to decimal
<3> http://www.php.net/hexdec
<2> @chr!
<3> (PHP 3, PHP 4, PHP 5)
<3> string chr ( int ascii )
<3> Return a specific character
<3> http://www.php.net/chr
<6> you know what'd be fun
<2> !php print chr(36);
<4> $
<2> !php print chr(39);
<6> installing an afterburner on a bobsled
<4> '
<2> hah
<7> @md5
<3> (PHP 3, PHP 4, PHP 5)
<3> string md5 ( string str [, bool raw_output] )
<3> Calculate the md5 hash of a string
<3> http://www.php.net/md5
<6> well
<6> even a jet engine would be cool
<2> !php print html_entities_decode("&#39;");
<4> Fatal error: Call to undefined function html_entities_decode() in /usr/home/poutine/safe/raw.php(6) : eval()'d code on line 1
<2> !php print html_entity_decode("&#39;");
<4> &#39;



<2> thats so ****ed up
<2> is that an error the php dev's just overlooked
<1> i wonder if you can set the max execution time directly in the php file itself.
<6> @set_time_limit!
<3> (PHP 3, PHP 4, PHP 5)
<3> void set_time_limit ( int seconds )
<3> Limits the maximum execution time
<3> http://www.php.net/set-time-limit
<7> yes you can
<1> nice
<1> ok j, :P
<1> i got you
<2> @htmlspecialchars!
<3> (PHP 3, PHP 4, PHP 5)
<3> string htmlspecialchars ( string string [, int quote_style [, string charset]] )
<3> Convert special characters to HTML entities
<3> http://www.php.net/htmlspecialchars
<5> any reason form tags would be somehow lost when ***igning a bit of code containing a form to the innerhtml of a div?
<2> !php print htmlspecialchars("&#39;");
<4> &amp;#39;
<2> !php print htmlspecialchars("'");
<4> '
<1> ****
<1> wtf are you trying to do j?
<1> /'
<1> er
<1> \'
<1> just escape it.
<2> i can't
<2> it's complicated
<7> !php eho "any luck?";
<7> nope
<8> add a c
<2> i hate this, but this is how it's being done, and i am in no mood at 1:15 in the morning to fix it. i'm in an M$ type patching mood
<2> ah screw it
<2> goodnight
<1> im in a sleep type mood
<1> g'nite
<2> sweet
<2> Conviction finished downloading
<2> (the pilot was available on iTunes FREE)
<2> i gotta watch
<6> heh. the american bobsledders look awesome.
<9> in php, after I make a connection to a DB, is there anyway to verify that it is actually connected?
<10> check the resource identifier
<10> so
<10> $r = mysql_connect(whatever)
<10> if (!$r) print "error connecting"
<10> etc
<9> say i have a table with 3 columns, i want to insert 3 vars from form input, easy, so insert into tablename values ($a,$b,$c);
<9> now what if $a ="hello, bye";
<9> would it send 4 arguments?
<11> it would fail miserably
<11> strings in sql need single quotes around them
<9> so it needs to be ('$a','$b','$c')
<11> if they're all strings, yes
<11> might want to look into addslashes or mysql_escape_string
<6> who would put $100k into a CD?
<9> and one last question, if the structure is ID auto increment, string, string, string, should it be sent like this (null, 'hello','world','hi')
<6> GyDo: you can just omit the field from the insert
<9> im trying to figure out why my values aren't being inserted into the db
<9> im having trouble identifying the problem
<9> you think that would cause it or no?
<6> no
<6> is mysql_error() returning anything?
<9> Column count doesn't match value count at row 1
<6> well there you go.
<9> excellent.
<9> :)
<11> GyDo: drop the auto increment field from the fields list


Name:

Comments:

Please enter the result of the sum 63 + 46 (to avoid spam):






Return to #php
or
Go to some related logs:

#kl
#india
#india
cinds
offffffffffffffffffffffff offfffffffffffffffffffffffffffffff
payal feet
indian anuties
vilashinee
%D9%83%D8%B3%D9%87%D8%A7
CAPKIN__ist



Home  |  disclaimer  |  contact  |  submit quotes