Recent content by Hexel C

  1. H

    Someone who know's PHP?

    Session variables. - on fuzzy.php start a new session or activate an existing session by calling session_start(); -create a session variable and assign your value (in this case, $_POST['name']) to the session variable $_SESSION['sessionName'] = $_POST['name']; Note the similarity between...
  2. H

    Will search engines read HTML meta keywords if it's echoed from PHP?

    To help with the cleanliness and unity of my code, I'm thinking of putting all the head information in a PHP file that I'll just include in each page. But if I do this, will search engines not be able to view my keywords? Answer with source will be helpful. Also, before you ask, yes I'll make...
  3. H

    PHP mail() function not working on GoDaddy website?

    I've been struggling with this for a long while now. To troubleshoot the problem I did a little experiment. I created a simple PHP script that it's only function was the mail() function. First I uploaded and ran it on a network solutions website I have. It worked and I received the email in...
Back
Top