Jump to content

ricez

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

ricez's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Cool. Thank you. By the way, what is wrong with PHPMYAdmin when it comes to importing csv?
  2. Hey everyone, I am trying to add this file into a MySQL table and it is not working out as predicted. I want to have the database field to be: Here are the first few lines from the text file: I tried using this and it didn't fan out as predicted with the use of PHPMyAdmin. Any help with this is appreciated.
  3. [quote author=obsidian link=topic=87665.msg352331#msg352331 date=1141691454] try something like this: [code] <?php include ('top.php'); // first, set a default to drop to if there isn't one in the URL $page = isset($_GET['page']) ? $_GET['page'] : 'news'; include ("{$page}.php"); include ('bot.php'); ?> [/code] basically, you've got to remember that whatever page you're trying to include is also in the same directory, but otherwise, you should be golden. [/quote] I tried using this, and it didn't work. I am wondering why. Also, how do you go about putting a default and be able to change what $page is?
×
×
  • 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.