I am sending emails using php while using GET function and i am having trouble pasting values with spaces. I want to replace spaces with %20 when sending the link in an email. How can i do this? Is this at all possible?
E.g. modify.php?name=Ricky Gonzales
modify.php?name=Ricardo%20Gonzales...
what does vars.inc do in a php include line? what should be the content of vars.inc? is it a config file in php? i'm a newbie and i am trying out some php scripts with include vars.inc lines... can you help me understand?
I was trying to insert data from a form but it is not inserting the entry to the database.
Here’s the code
$Tours = $_POST['Tours'];
if (is_array($Tours)) {
foreach ($Tours as $key=>$val);
$content = $content . count($Tours);
for ($i=0;$i<count($Tours);$i++) {
$content = $content ...