Jump to content

Stevan

Members
  • Posts

    31
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling
  • Location
    Coral Springs Fl.

Stevan's Achievements

Member

Member (2/5)

0

Reputation

  1. I have a script that I want to have it add in Alpha order . I can not figure out how to do it a bit beyond what I have learned ##----------------------------------------------------------------------------------- ## GENERATING CATEGORY LIST -- START HERE ##----------------------------------------------------------------------------------- $dir = ''; if (mysql_num_rows($rs) > 0) { $dir = '<tr><td align=\'left\' valign=\'top\' width=\'100%\'><ol>'; while (list($id,$name,$image) = mysql_fetch_row($rs)) { $url = trim(strtolower($name)).'.html'; $url = str_replace(' ','',$url); if ($image != '') $dir .= "<p><li><a href='$url'><img src='images/$image' border=0><br><strong>$name</strong></a></li></p>"; else $dir .= "<p><li><a href='$url'><strong>$name</strong></a></li></p>"; } $dir .= '</ol></td></tr>'; } return $dir; } ?> THXS Steve
  2. It was php what happened when I downloaded it in Firefox for some reason it duplicated every thing in the folder for some reason I tried to up load it BUT it would not let me on the forum I posted it on my site and that is where he saw it and told me what happened Soory about the confusion I just could not get the explansion right
  3. kenrbnsn Explained to me what happened THXS to All
  4. editor.php editor(9).php engineinc.php engineinc(12).php admin.php admin(4).php They are all like this one with a number one with out
  5. In the script it self It is very strange that it is that way
  6. Every line of coding has two lines One with a number and one without admin.php then they have admin(4).php box.php then they have box(6).php Do the ones with the number do anything or just garbage THXS
  7. I have a script I got and there is something strange about the coding. It works great but do I need all the duplicate coding almost even line has another one with a number beside it Here are some lines admin.php then they have admin(4).php box.php box(6).php Do the ones that have the numbers do anything ?? Very strange THXS Steve
  8. I get this errors I am not sure why Parse error: syntax error, unexpected T_FINAL in /home2/cruisew/public_html/discountcruiseagency.net/mlm/sub_add.php on line 2 Line 2 = <? if ($val != final){ ?> and Parse error: syntax error, unexpected T_FINAL in /home2/cruisew/public_html/discountcruiseagency.net/mlm/account_details.php on line 2 Line 2 = <? if ($val != final){ ?> This is beyond what I know THXS Steve
  9. Soory I did not see that BUT I changed what you said and that solved that problem BUT now I do not get the MESSAGE
  10. <form name="form1" form method="post" action="sendmail.php"> <p>Email: <input name="email" type="text"> <br /> Message:<br /> <input name="message" type="text" size="40"> <br> <select name="color_choice"> <option value="red">red</option> <option value="blue">blue</option> </select> </p> <p> <br /> <input type="submit" /> </p> </form> <?php $email = $_REQUEST['email'] ; $message = $_REQUEST['message'] ; $color_choice= $_REQUEST['color_choice'] ; mail( "steve@url.com", "Feedback Form Results", $message, "From: $email" ); header( "Location: http://www.example.com/thankyou.html" );
  11. I am trying to use Php send mail. The problem I am having is when I use this on the page <select name="color_choice"> <option value="red">red</option> <option value="blue">blue</option> </select> and this in the send mail $color_choice= $_REQUEST['color choice'] ; I get nothing sent What do I have to use or do I have a mistake All other text items are being sent THXS STeve
  12. I see the file there class.html.mime.mail.php here is the two lines it says line 130 include("$emml_path/class.html.mime.mail.php"); line 132 $em_mail = new html_mime_mail('X-Mailer: ');
  13. DO you mean this one html_mime_mail
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.