Jump to content

Lucky_PHP_MAN

Members
  • Posts

    25
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Lucky_PHP_MAN's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Maybe you can show us a little bit of the sql script for the table? 1. Do an "Export" on your tables and post it here? Regards, LPM
  2. You might want to install Firefox with Firebug Add-ons These addons can help you to check the javascript on that page and the proper html tag to use Hope it helps. Regards, LPM
  3. you might want to add this into the very top of your php script <?php // begin code header ("Content-Type: text/xml"); // end code ?> Hope it helps. Regards, LPM
  4. I nvr tried pg_connect() before, but looking at the manual, the correct syntax should be something like this? $dbconn3 = pg_connect("host=localhost port=5432 dbname=mary user=lamb password=foo"); you have to define a "host=localhost" variable inside the connection string for it to connect successfully? Have no idea though. Hope it helps. Regards, LPM
  5. I'm assuming that your (1,52) is a complete sets of card. I would usually do a pre-defined sets of cards in an array. So, let's say 1-13 = Spades 14-26 = Hearts 27-39 = Clubs 40-52 = Diamonds Then check the number of the cards against these array of cards. It's just an opinion. Hope this help Regards, LPM
  6. The footer html looks fine with me. Could it be that you've attached some CSS that makes it all white? Regards, LPM
  7. That would depends on how are you going to query it out from the database. In all my usual projects, I would do a SQL query to the database to save the name of the folder and the name of the file. It would be something like "uploads/my.new.file.name.ext Again, that would depend on how would your flash is going to read this database. Regards, LPM
  8. Maybe you can show a segment of the code that show the whole HTML page with its footer? that will helps a lot Regards, LPM
  9. well, since it is absolute, it would remain there. how about changing position to relative? is it the same result? Regards, LPM
  10. I'm not sure why your footer would not appear. It would be some of the "die()" method in PHP that makes is stop from intepreting the script. That could have stopped your footer from appearing. Regards, LPM
  11. you might want to check this out http://javascript.internet.com/navigation/cascading-menu.html or google it for better results Regards, LPM
  12. Not A Problem Good luck Regards, LPM
  13. Why don't you try out XAMPP? It is a very nice bundle of Apache, MySQL and PHP Worth to give it a try. Regards, LPM
  14. I would assume that all these images are inside "Images/Random/" folder. If so, you might need to add a slash at the end of your $image_folder string. // Change to the location of the folder containing the images $image_folder = "images/random/"; // added a slash at the end The above will point the image to "images/random/{random_number}.gif Hope it helps Regards, LPM
  15. I hope I assumed correctly that you were just trying to list out everything basically whether it has images or no images, if so my solution would be. 1. Take off the "lu.listings_id = l.id" statement. 2. Modify the column inside your DB table which is "thumb_url" in this case to "nopic.jpg" or 3. You might want to let PHP do some checking. IF (thumb_url is empty) img src=nopic.jpg ELSE img src=somepic.jpg Hope this helps Regards, LPM
×
×
  • 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.