Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by about2flip

  1. about2flip

    $_Post Question

    Thanks. I got it. I appreciate the Help <td><? echo "$_POST[month] / $_POST[day] / $_POST[year] "; ?></td> This is how I got it to show in the confirm page. Thanks
  2. about2flip

    $_Post Question

    Also BabyJeff, thanks but I a posting using the following: <td width="145"><? echo "$_POST[shipperorg]"; ?></td> </tr> <tr> <td><strong>Pick Date: </strong></td> <td><? echo "$_POST[date]"; ?></td> </tr> <tr> <td><strong>Origin City: </strong></td> <td><? echo...
  3. about2flip

    $_Post Question

    If it makes a difference my column for pickupdate in my db is: Field-pickupdate Type-varchar Length-32 Attributes- empty Null-notnull default-empty extra-empty Thanks.
  4. about2flip

    $_Post Question

    Hi: I am trying to write a date selected by the user into mysql date column. There are three variables month, day, year. Here is portion of the code from the script that will insert the data into the DB: / create query $query = "INSERT INTO $table_name (shipperorg, pickupdate...
  5. about2flip

    Date Dropdown Help needed

    I'm not having much success with the way I was told to post the variables into one date column. Am I doint this wrong? '$_POST[$year:$month:$day]' Thanks again for your help // create query $query = "INSERT INTO $table_name (shipperorg, pickupdate, origincity, originstate, destcity...
  6. about2flip

    Parse Error

    I just realized the domain is posted is there anyway for me remove it? Thanks
  7. about2flip

    Parse Error

    I am getting a parse error '<' on Line 7. I can not see it. Can someone help me out and tell me where it is. <? $page_title ="EXDQ TRUCKING ADMIN"; include ('includes/header.html'); ?> <h1 id="mainhead">Expedited Trucking Admin</h1> <? echo 'Today is ' .date('l') . ' . The current Time is ' ...
  8. about2flip

    Date Dropdown Help needed

    never mind I think I figured it out. Thanks
  9. about2flip

    Date Dropdown Help needed

    I appreciate the help and hate to be a pain. But i am still learning PHP/MYSql. If you look at my code, how do I id the three variables to go into a column I have named pickupdate. The code: <? function make_calendar_pulldowns($m=NULL, $d=NULL, $y=NULL) { // Make the months array...
  10. about2flip

    Date Dropdown Help needed

    ok. but how do I grab all three variables that the user selects from the dropdown menu. $month $day $year into one column? Thanks
  11. about2flip

    Date Dropdown Help needed

    how would I enter the months, day and year into the DB? Do I have to have seperate columns for each? This is my addload.php script: <? $page_title ="ADMIN"; include ('includes/header.html'); ?> <h1 id="mainhead">Expedited Trucking Admin</h1> <? echo 'Today is ' .date('l') . ' . The current...
  12. about2flip

    Date Dropdown Help needed

    Thanks!! I fixed that but now I am getting an error on line 112, and nothing is there. <? $page_title ="EXDQ TRUCKING ADMIN"; include ('includes/header.html'); ?> <h1 id="mainhead">Expedited Trucking Admin</h1> <p> <? echo 'Today is ' .date('l') . ' . The current Time is ' . date ('g:i a')...
  13. about2flip

    Date Dropdown Help needed

    Hello: I have a form that I am trying to make a dropdown menu using a phpscript. I keep getting a tstring error on line 21 which is function make_calendar_pulldowns... I am using php4, is this the correct format for php 4? If someone could cut and past the script into their editor and see what...
  14. about2flip

    failed to open stream: Permission denied

    I checked the forum before posting this, and saw a posting but there was no real solution. I am learning to use fopen, and I keep getting Warning: fopen(exp/runs.txt): failed to open stream: Permission denied in /home/httpd/vhosts/domainname.net/httpdocs/testopen.php on line 2 now here is the...
  15. about2flip

    MYSql Password Insert

    I want thank all who helped with the issue I was having with the password, so I figured it out. The problem I am having now is info is submitted from form 1, at form two which is the code below, it does not show the info for user to verify before it writes to the DB. I'm figuring I am miss using...

Part and Inventory Search

Back
Top