Recent content by RickyG

  1. R

    how can i replace spaces with %20 using php?

    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...
  2. R

    What is VARS.INC in php?

    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?
  3. R

    How to insert multiple checkbox entry into mysql using php?

    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 ...
Back
Top