Jump to content

Linera

Members
  • Posts

    62
  • Joined

  • Last visited

Everything posted by Linera

  1. Thank you so much.Edit: After placing the coding in, I found it doesn't redirect to agreement.html.
  2. I know there has to be another way to do it since blizzard did it with their site.
  3. I prefere to do it myself.I am doing this all to help me learn stuff like right now I'm learning on making a complete signup page for accounts.
  4. I know the elf image takes you to agreement.html but the button labeled Create Account also takes you to agreement.htmlGoto http://signup.worldofwarcraft.comThen click Create account.
  5. http://signup.theendless.logical-host.com/
  6. This is all i saw in the code for the button which takes you to the page titled agreement.html.
  7. How does this form take the user to another page? <form method="post"><input type="image" src="images/createaccount-button2.gif" alt="Create Account" ></form>
  8. Fully working now at http://www.theendless.logical-host.com/remote.php
  9. Gave me an error:Goto http://www.theendless.logical-host.com/dkp/remote.phpto see error message.
  10. I clicked it and it works fine except the menu in the php included fileThis script(which doesn't work) should give an idea of what i need. <?phpif (isset($_GET[view])){ if (isset($_GET[userid])){ <?php include("http://www.webdkp.com/remote.php?view=<?=$_REQUEST['view']?>&id=8559&tableid=1&userid=<?=$_REQUEST['userid']?>");?> } else { <?php include("http://www.webdkp.com/remote.php?view=<?=$_REQUEST['view']?>&id=8559&tableid=1");?> }}?>
  11. Here is my problem:I include a php file for http://webdkp.com into my sitebasicly it allows users to see certain info by going to my sitehere is my site page: http://www.theendless.logical-host.com/dkp/problem is all links that come from the include like and Don't workI need to include the php file so all the links will work.
  12. I want to put xml coding into a html file just like i can put php coding into a html file
  13. listen, i was shown how to have a html file get sent through the php parser.Now I want to know how to get html file to get sent through the xml parser.
  14. look in previous posts. i was shown how to get html to parse php
  15. How would I parse xml in a html file?
  16. It works greathttp://www.souimappers.post2hostit.com/phptest/make sure you copy the line below and place it at the end of the document below the last line.AddType application/x-httpd-php .html
  17. i know its installed as i have a php forums installedI was looking into making a better forumsthanks for your help.
  18. which means i'll be able to use php coding in html files?
  19. So how can I do this style forums on my site?
  20. I notice it has javascript files in the coding.
  21. its not using php though.or you would see in the address bar http://forums.worldofwarcraft.com/forum.php or http://forums.worldofwarcraft.com/board.phporhttp://forums.worldofwarcraft.com/topic.php
  22. I saw on http://forums.worldofwarcraft.com that the forums are built in html and not in php.How do you build a forums like this?please help me out.Thank you.
  23. Linera

    turn on errors

    How do I turn on errors for the php on my apache server that in local only?
  24. stupid php book shows no ; in the sample script.
  25. This script will not display the form: <?php$self = $_SERVER['PHP_SELF'];$name = $_POST['moviename'];$genre = $_POST['moviegenre'];$year = $_POST['movieyear'];if( ( !$name ) or ( !$genre ) or ( !$year ) ){$form ="Please enter all new movie details..."$form.="<form action=\"$self\"";$form.=" method=\"post\">Movie's Title: ";$form.="<input type=\"text\" name=\"moviename\"";$form.=" value=\"$name\"><br>Genre: ";$form.="<select name=\"moviegenre\" size=\"1\">";$form.="<option value=\"Action/Adventure\">Action/Adventure</option>";$form.="<option value=\"Adaptation\">Adaptation</option>";$form.="<option value=\"Animation\">Animation</option>";$form.="<option value=\"Art/Foreign\">Art/Foreign</option>";$form.="<option value=\"Biopic\">Biopic</option>";$form.="<option value=\"Classics\">Classics</option>";$form.="<option value=\"Comedy\">Comedy</option>";$form.="<option value=\"Crime/Gangster\">Crime/Gangster</option>";$form.="<option value=\"Documentary\">Documentary</option>";$form.="<option value=\"Drama\">Drama</option>";$form.="<option value=\"Features\">Features</option>";$form.="<option value=\"Holiday\">Holiday</option>";$form.="<option value=\"Kids/Family\">Kids/Family</option>";$form.="<option value=\"Miscellaneous\">Miscellaneous</option>";$form.="<option value="Musical/Performing Arts"\>Musical/Performing Arts</option>";$form.="<option value=\"Politics/Religion\">Politics/Religion</option>";$form.="<option value=\"Remake\">Remake</option>";$form.="<option value=\"Romance\">Romance</option>";$form.="<option value=\"Science Fiction/Fantasy\">Science Fiction/Fantasy</option>";$form.="<option value=\"Sequel\">Sequel</option>";$form.="<option value=\"Special Interest\">Special Interest</option>";$form.="<option value=\"Sports\">Sports</option>";$form.="<option value=\"Suspense/Horror\">Suspense/Horror</option>";$form.="<option value=\"Teen\">Teen</option>";$form.="<option value=\"Thriller\">Thriller</option>";$form.="<option value=\"War\">War</option>";$form.="<option value=\"Western\">Western</option>";$form.="</select>";$form.="<br>Year: ";$form.="<input type=\"text\" name=\"movieyear\"";$form.=" value=\"$year\"><br>";$form.="<input type=\"submit\" value=\"Submit\">";$form.="</form>";echo( $form );}?>
×
×
  • Create New...