Jump to content

magic24688

Members
  • Posts

    24
  • Joined

  • Last visited

Posts posted by magic24688

  1. I am trying to create a person by 100x145. There are 3 parts to the picture. The head, body, and legs. I need all 3 to show different pictures like outside images (head.bmp, legs.bmp ect...). So they can be changed without changing the hole image. So I am looking for something like:-----------| Header| //head.bmp-----------|..body..| //body.bmp----------|..legs...| //legs.bmp----------Then they are combind into one.What image function's would help me make this or is there a script kinda what im looking for already.

  2. I was more looking on the lines of how to highlight PHP codes with a script. As in highlight.bg, highlight.comment, highlight.default, highlight.html, highlight.keyword, and highlight.string. I just don't know how to do it.

  3. Does not matter but that Session end when the page is exited, If you want them to stay logged in you need to use Cookie's to save there information on there computer.

  4. I want to take information off of a WebSite to put on mine but not having to update it or anything as they update it. I cant have my own code connecting to theres but have it like extract it from it but only a specifc part of there information. Im not sure what function to use. This is has been done but im not sure if they had used something different but the format was in PHP.Thanks!

  5. To my limited JS that I know the comment <!-- Text --> is just for comments on the script its self and does not apply on the page. So try to taeke the <!-- --> out to apply the script so it works. Only use <!-- --> to comment on the scripts.

  6. Ok, I ran your script and didnt get a Failed to send message, but I do see some things wrong that you dont need.Try to change the:$headers = "From: " . $_POST['emailAddress'] ."\n";To:$headers = "From: $_POST['emailAddress']";The varible will still be called with a $_POST that way to.ALso the echo() the () are not required seens it is not a function like if () so you can write it as:echo "<p>Message sent</p>";But the way you had it it still ran fine for me.

  7. Not that im a 100% expert at PHP but try to switch the ' and the " like thisecho "<a href='descrip.php?accountnum=$accountnum'>";This might let the $ be called not sure if that fixes but at least I tryed :).

×
×
  • Create New...