Recent content by ?pathtotake?

  1. ?

    What is wrong with using <br> in html?

    My teacher saw my HTML and kind of made a negative remark that I can't remember. I didn't ask. So what's wrong with it? It works and and easy?
  2. ?

    Is it possible to style RSS using opera/firefox/chrome? They seem to style it...

    ...themselves? I can't download IE to see if it does the same. Ive been asked to style rss using css but none of my css works. It shouldn't be hard. I've copied character for character from examples but none of them work. Any help? Thanks
  3. ?

    Pulling my hair out. Normalization. Please explain?

    http://databases.about.com/od/specificproducts/a/normalization.htm From the above website it says: for first NF "Create separate tables for each group of related data and identify each row with a unique column or set of columns (the primary key). " and for second NF it says: "Remove subsets...
  4. ?

    Is there an IDE for PHP to check for errors as youre coding? like there is with java...

    ...(netbeans)? Dreamweaver doent do this Any help?
  5. ?

    How would I do this in PHP? if statement and drop down menu?

    I have a drop down menu. What would be the basic way to say if value in drop down menu is selected - then do this Any help?
  6. ?

    Does anyone know any free web hosts with PHP and FTP with no ads?

    Yes indeed - 000webhost.com Ive been using it for my Intro to web programming for a while works nicely
  7. ?

    Does anyone know any free web hosts with PHP and FTP with no ads?

    Yes indeed - 000webhost.com Ive been using it for my Intro to web programming for a while works nicely
  8. ?

    How to post to another php page when it already posts to itself?

    I have a page that posts to itself, I then need something like if something happens then header ("location: page1.php") But this still doent work, it carried on posting to itself regardless of what happens
  9. ?

    What is a good IDE for php that has design functions, like in dreamweaver?

    Ive found an IDE for PHP and im using netbeans, but just to push it, any thing with error checking and design thingies? for instance, moving a layer around like you do in dreamweaver?
  10. ?

    Is there an IDE for PHP to check for errors as youre coding? like there is

    with java (netbeans)? Dreamweaver doent do this Any help?
  11. ?

    How would I do this in PHP? if statement and drop down menu?

    I have a drop down menu. What would be the basic way to say if value in drop down menu is selected - then do this Any help?
  12. ?

    Is it possible to make a php calculator using one text box?

    If so would you give me simple ideas on how? Because I can make one with two text boxes for two values, but Im asked to do it with one. Thanks e.g. in the text box the user can enter: "1+9" and the two numbers would be added
  13. ?

    What's wrong with this PHP code?

    I have two files: a.php and b.php In file a.php I have the following code: <html> <head> <title>My Page</title> </head> <body> <p>Grade:<br /><input type="text" name="name" value="" /></p> Level: <form name="myform" action="b.php" method="POST"> <select name="mydropdown"> <option...
  14. ?

    Netbeans wont upload php files automatically on run or on save.?

    Ive checked these options to upload on save, but it still doesnt upload on save, it will upload but only if i do it manually. In the begning when i was getting things started it failed the upload and asked whether I wanted to disable automatic uploading, so i said yes presuming Id be able to...
  15. ?

    Whats wrong with this php code?

    $val = $POST["name"]; switch ($_POST['mydropdown']){ case 'a': if (( $val >=70) and ($val <=100)) { echo "13 - 15 First Class Honours"; } if (( $val >=60)and($val <= 69)) { echo "10 - 12 Upper Second Class Honours"; } //echo $_POST["name"]; if (( $val >=50)and($val <= 59)) { echo...
Back
Top