Search found 5 matches

by ssmela
Wed Sep 12, 2007 3:34 pm
Forum: PHP - Code
Topic: What's the truth about runtime enable/disable of magic_quote
Replies: 5
Views: 586

Makes perfect sense. Thank you very much.

Sam Mela
by ssmela
Wed Sep 12, 2007 1:11 pm
Forum: PHP - Code
Topic: What's the truth about runtime enable/disable of magic_quote
Replies: 5
Views: 586

Thank you, but I am unclear what has already been "interpreted".

Can you please explain?
by ssmela
Wed Sep 12, 2007 12:11 pm
Forum: PHP - Code
Topic: What's the truth about runtime enable/disable of magic_quote
Replies: 5
Views: 586

What's the truth about runtime enable/disable of magic_quote

I am running PHP Version 5.2.2 on a Windows PC using XAMPP. I created the following code: <?php ini_set('magic_quotes_gpc', 'On'); echo("magic_quotes_gpc=".get_magic_quotes_gpc()."<br />"); ini_set('magic_quotes_gpc', 'Off'); echo("magic_quotes_gpc=".get_magic_quotes_gp...
by ssmela
Mon Aug 27, 2007 1:49 pm
Forum: Databases
Topic: What does the PHP Manual mean about using mysql and mysqli?
Replies: 4
Views: 490

OK sorry I should have given more information on the question about "get_var ". Here is the more complete example. $connection = mysql_connect("localhost",$Login,$Password) or die("Couldn't make a connection."); $db = mysql_select_db($theDB, $connection) or die("Co...
by ssmela
Mon Aug 27, 2007 12:09 pm
Forum: Databases
Topic: What does the PHP Manual mean about using mysql and mysqli?
Replies: 4
Views: 490

What does the PHP Manual mean about using mysql and mysqli?

According to the PHP Manual, "If you would like to install the mysql extension along with the mysqli extension you have to use the same client library to avoid any conflicts." I find this confusing because I have two dll libraries installed on my Windows XAMP system: (1) php_mysql.dll (2) ...