Search results

  1. T

    PHP Help... Return Function?

    how do i use the return() function in PHP? Like if i had a function like say this $user_text = "Hello"; function check($user_text) { if ($user_text == "") { return true; } else { return false; } } //How would i test the output? like would it be like if(check($user_text);) = false {...
  2. T

    How to stretch a Text Box In HTML?

    Hey, i am making something in HTML and i would like to make it look nice by stretching the Text box horizontally in the HTML... is there anyway i can do this?
  3. T

    PHP Script Help Sending Message?

    So I am trying to make a php script that will have to boxes and a button and they put a user name in one box and a password in the other then it mails it to me. this is what i got so far but im not really a php scripto so could someone please help me. thanks. CODE SO FAR: <head> <title>Submit...
Back
Top