Jump to content

morpheus.100

Members
  • Posts

    145
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

morpheus.100's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Well the right lines but rechech and google the last 2 lies of your code. Im currently drunk but where did you declare this variable or assign a value to it in the provided script. , $messageproper
  2. Absolutely correct. Dreamweaver does not and I doubt wil ever fuly suport this. Im am currently denying a somewhat succesful night out so wil post further in the morning. hey thats London.
  3. Are you trying to insert an image name or the actual image data. If uploading and entering you could use $_FILES['fieldname']['name'] Inserting actual image data is a little more tricky, but if you post some code people can help out. Try this url for more info: [a href=\"http://uk.php.net/features.file-upload\" target=\"_blank\"]http://uk.php.net/features.file-upload[/a]
  4. I have 8.0 and I dont think its worth the extra. Stick with MX if thats what youre using.
  5. Not sure exactly what you mean but to put some distace between words easily without css styles use for extra spaces so <tr> <th width="321" scope="col"> <div align="left">Pakistan ( Karachi, Islamabad, Lahore)</div></th> <th width="125" scope="col"> <div align="left">Feb 17 - 27 </div></th> <th width="121" scope="col"> <div align="left">$2,500 </div></th> </tr> Becomes: <tr> <th width="321" scope="col"> <div align="left">Pakistan ( Karachi Islamabad Lahore)</div></th> <th width="125" scope="col"> <div align="left">Feb 17 - 27 </div></th> <th width="121" scope="col"> <div align="left">$2,500 </div></th> </tr>
  6. <td><select name="select" size="3" multiple> <option value="logo" selected="selected">logo</option> <option value="decription">description</option> <option value="feedback">feedback</option> <option value="guestbook">guestbook</option> </select></td> How come you modified the automatically inserted code?
  7. Can you post the code from formail.php so we can see whats going on.
  8. Simple answer no. Your obviously not willing to learn.
  9. Well after you insert the record use the mail() function. Browse the php manual or goto the Macromedia site and get the free php mail .mxp available.
  10. Sure you got the table names correct? I would also condense these lines. LIMIT can be used in your initial query. $query_Recordset1 = sprintf("SELECT * FROM table_films WHERE col_genre LIKE '%%%s%%'", $colname_Recordset1); $query_limit_Recordset1 = sprintf("%s LIMIT %d, %d", $query_Recordset1, $startRow_Recordset1, $maxRows_Recordset1);
  11. New to php and taking on commercial assignments. Well your first project and your out of your depth with a wizard based application. Search google for use of conditional statememnts or consult the php manual for uses of if{} else{} elsif{} and search tutorials for multiple function forms or add, edit, delete forms. Loads out there.
  12. Show some code so people can see whats going on. Its like a deaf person trying to read braile.
  13. $query_Recordset2 = sprintf("SELECT * FROM userbuy WHERE uge = '%s'", $colname_Recordset2); Your SQL is for a select here not an insert.
  14. No debug engine is included with dreamweaver, therefore you are reliant on php error reporting. If you want a php editor with debug capabillity then buy Zend Studio. Debug engines will not reduce development times as they are built around php's standard error reporting anyway.
×
×
  • 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.