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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. PhoenixDown

    Pagination with flatfile database

    I have a flat file database delimited with |. Can someone please help me a code which can do the pagination? Let's say max is 10 per page. My DB is set up like the following: test|test|test test2|test2|test2 test3|test3|test3 Thanks alot! -Calvin
  2. PhoenixDown

    Problem aligning table

    I need help aligning my table. The main table should be aligned with the 'Navigation' table and not the 'poll' table. Cam someone please help me fix it? Here is what it looks like: http://www.thegamingedge.com/test.html Thanks.
  3. PhoenixDown

    Mysql query

    I havent done php in a while so could someone tell me why this isn't working include 'config.php'; $dbi = mysql_connect ("$server", "$user", "$pass") or die ("Error connecting."); mysql_select_db ("$db") or die ("Error selecting...
  4. PhoenixDown

    White pages

    I've recently installed AppServ 1.9.0 on my computer, but all of my PHP files display only white pages. This has not happened before when I have used AppServ about 3 or 4 months ago.
  5. PhoenixDown

    Excuting script from another site.

    Hi. I have 2 sites, and on one I want to execute a script for my other site. The address would be something like: http://www.mysite.com/cgi-bin/stuff/something.cgi?action=something&id=$id&username=$username&password=$password Thanks.
  6. PhoenixDown

    HTML Table question

    Please go here (http://www.puremadnezz.com/php/test.html) and view the web page and source code. You see in the left part of the screen near the contact information? I want the table border size to be the size as the other table borders. I've tried to do it, but I've failed. Can someone please...
  7. PhoenixDown

    File upload problems.

    I'm still new at this and I can't get it to work. I'm using PHP 4.2: Warning: Unable to open '' for reading: Permission denied in c:\appserv\www\admin\index.php on line 907 Couldn't copy the file! echo &quot;<form enctype=\&quot;multipart/form-data\&quot; name=\&quot;theform\&quot...
  8. PhoenixDown

    Backing up a database

    How do I backup my database and show the sql file on the web browser?
  9. PhoenixDown

    Checking if cookie exists

    How do I do that?
  10. PhoenixDown

    Password verification

    How do I check a username and password in a mysql database? I'm trying to make a user login form.
  11. PhoenixDown

    Problem with variables

    I'm getting this error: Parse error: parse error, unexpected T_STRING in C:\www\php\post.php on line 172. My code is: include '../config.php'; $date = date(F jS, Y); $time = date(h:i A);
  12. PhoenixDown

    Variables in PHP 4.2.1

    Why don't variables work for me in PHP 4.2.1? $something = &quot;test&quot;;
  13. PhoenixDown

    Problem updating row

    I'm having a problem updating row in MySQL. $query = mysql_query(&quot;update table set message='$what' where id='$id'&quot;, $connect);
  14. PhoenixDown

    making multiple pages

    im making a guestbook and in my control i have an option for max entries per page. currently the option in my mysql db is set to 10. so can someone help me make something that will display xx entries per page and to display the pages at the bottom of my guestbook? i really need help making this...
  15. PhoenixDown

    renumbering mysql records

    k i have a mysql db with records similiar to this: 1 test1 test1 test2 2 test2 test2 test2 3 test3 test3 test3 i made the delete code for it so i was wondering if somebody could help me with a code that will renumber records when one get deletes. so if &quot;2 test2 test2 test2&quot; gets...
  16. PhoenixDown

    POP email

    How do I connect to a POP server with an account username/password and display messages?
  17. PhoenixDown

    Another problem :(

    OK, I'm using this to get data from rows in my table: <? include 'data/config.php'; mysql_connect(&quot;$server&quot;, &quot;$dbusername&quot;, &quot;$dbpassword&quot;) or die(&quot;Could not connect to database. Please make sure data/config.php exists, and it is configured correctly...
  18. PhoenixDown

    MySQL help

    Hi. How do I get records from rows in a MySQL table into a scalar variable? I want to use them on my web site.
  19. PhoenixDown

    Problem with MySQL

    I'm using this in my install.php file: DROP TABLE IF EXISTS guestbook_admins; CREATE TABLE guestbook_admins ( adminid smallint(5) NOT NULL auto_increment, username varchar(150) NOT NULL default '', password varchar(150) NOT NULL default '', PRIMARY KEY (adminid) ) TYPE=MyISAM; It...
  20. PhoenixDown

    MySQL questions...

    1. How do I connect to a MySQL database? 2. What do these MySQL commands mean when I try to create a table? Type: ISAM, MyISAM, Heap, Merge, InnoDB Data type: >tinyint, smallint, mediumint, int, bigint, float, double, decimal, date, datetime, timestamp, time, year, char, varchar, tinyblob...

Part and Inventory Search

Back
Top