Recent content by A guy with too much time

  1. A

    Anyone willing to help me learn how to set up a sign up page using PHP and AJAX on Live?

    If you have been able to learn thus far, then you should be able to learn the rest. Here are the links in which I learned from. Just keep in mind that AJAX doesn't make your website anymore professional than anyone elses. It just looks cooler.
  2. A

    Anyone willing to help me learn how to set up a sign up page using PHP and AJAX on Live?

    If you have been able to learn thus far, then you should be able to learn the rest. Here are the links in which I learned from. Just keep in mind that AJAX doesn't make your website anymore professional than anyone elses. It just looks cooler.
  3. A

    what are the cons to encrypt part of your html code?

    One con I can think about immediately... what happens when you want to edit or change it? Another thing, if the person wants the scripts badly enough, they're going to get it. There isn't much you can do to "secure" HTML/JS/anything that the end users computer will have to read/parse/display...
  4. A

    How to display part of PHP function in one line?

    Look at the flow of logic: $pagination = $i; // this is a numeric value if($page != $i) // if $page does not equal $i // change $pagination to a link echo $pagination; // print the value of $pagination Pretty much what's happening is that $page is never equalling $i so it's never changing...
  5. A

    Anyone willing to help me learn how to set up a sign up page using PHP and AJAX on Live?

    If you have been able to learn thus far, then you should be able to learn the rest. Here are the links in which I learned from. Just keep in mind that AJAX doesn't make your website anymore professional than anyone elses. It just looks cooler.
  6. A

    How to get data from php?id= on another page?

    You have it right. $_GET['']; is used to retrieve anything that is passed by the URL itself. How you get the information is always determined by how it's sent. On a form, it's defined by the method. page.php?variable=value $_GET['variable'] will equal value
  7. A

    I am having an issue with a php script.?

    Parse error: syntax error, unexpected T_STRING usually means that you forgot to close the previous line. So for example: $something = "" $somethingelse = ""; ?> <title> Or something to the equivalent of the above. Check the next line up for a missing semi-colon or something else that could be...
  8. A

    I am having an issue with a php script.?

    Parse error: syntax error, unexpected T_STRING usually means that you forgot to close the previous line. So for example: $something = "" $somethingelse = ""; ?> <title> Or something to the equivalent of the above. Check the next line up for a missing semi-colon or something else that could be...
  9. A

    I am having an issue with a php script.?

    Parse error: syntax error, unexpected T_STRING usually means that you forgot to close the previous line. So for example: $something = "" $somethingelse = ""; ?> <title> Or something to the equivalent of the above. Check the next line up for a missing semi-colon or something else that could be...
Back
Top