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 Chriss Miller 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: *

  • Users: dagoat10
  • Content: Threads
  • Order by date
  1. dagoat10

    Tables misaligned

    Greetings all, My tables are all misaligned, but i can figure out why, and it tried to use an align tag in the table but that has not worked any ideas? http://charon.cs.wau.edu/~pkioko/NFL_LivePlayers.php if you need the piece of code that is running this i can post it.
  2. dagoat10

    Date and Time Based folder

    Hello everyone, I have been trying to make a date and time based folder, but i can never seem to get the time part to work. Because when you create a date based folder you can only use that folder name once. These are the instructions i followed from another site from Tech Republic...
  3. dagoat10

    RadRails issue

    I am not sure if it is my settings or what, but when i start my server in radrails, the status continues to be starting, and it never says starting. And this is the error. -e:4:in `load': no such file to load -- script/server (LoadError) from -e:4:in `<main>' What is going on?
  4. dagoat10

    Problem Running ASP.NET Page

    This issue has been frustrating me for 3 days. I have Visual Studio 2008 and prior to 3 days ago I was able to run my sites and pages. Recently it just stopped. I have tried installing and updating IIS 6.0 to allow ASP.NET. I have looked all over for a solution, but all the ones I try my site...
  5. dagoat10

    .htaccess and .htpasswd files

    I have been trying to use the .htaccess file and .htpasswd file for password protecting my website, but the .htaccess login pops-up but is not reading the .htpasswd file. They are in the same directory. I have been typing the username and password correctly. so what could my problem be? Here is...
  6. dagoat10

    PHP Resource id# 1080

    I am not sure what this error means, i have searched the internet for the answer to what i was getting back from my program. Resource id# 1080. I have no idea what that means and the 2 things i use are mysql_num_rows() and mysql_query but i have no idea which one is reporting the error. Has...
  7. dagoat10

    script to execute mysql command

    I have been trying and trying and trying, i have no idea was is wrong. I wrote this script to grant a privilege on a table in a mysql database and it keeps saying no grant defined for user test1 at host localhost #! /bin/bash mysql -u root -p <<EOFMYSQL use mysql Grant create on...
  8. dagoat10

    Grant table using php

    i was trying to use php to execute a grant create command for mysql, but it did not fill the grant table. Here is what i tried: mysql_query("Grant create to $user . '@localhost'"); prior to this the user has been created, so what i am doing wrong?
  9. dagoat10

    mysql/php login page

    I am wondering if i can create a login in page using php to log in to a mysql database. Because if the user name is in the user table in the mysql database then i just need to be able to match the password which is encrypted, but i can decrypt the password. I have used a number of ways to...
  10. dagoat10

    Install local copy of php

    I am not a root user on the server that i am on, so i have no permission to install an update PHP version, the server version is PHP 4.1.2. does anyone know how to install a copy of php in my user directory. It seems possible, i did it for mysql, but i don't know how to do it for php
  11. dagoat10

    Inner Tables

    is there a way to setup a table with 2 inner tables like this: <table> <form> <tr> <td> <table> //some code here </table> </td> </tr> <tr> <td> <table> //some other code here </table> </td> <tr> </form> </table> What should i do.
  12. dagoat10

    fwrite issue

    i have been trying to write to a file, but i get indentation in the file. I can get rid of the ^M characters but it's all shifted and each entry is a line, rathar then each row is a line. example: 1 Name Team State <?php $file =...
  13. dagoat10

    Parsing web data

    I have gotten so close to parse a page that i read from another website, but i have not succeeded i can't get it to get the line to stop breaking at the wrong place. if the number is equal to the rank it should use a line break otherwise keep reading the line. <?php $file =...
  14. dagoat10

    Import into database from web

    Is there a way to import data from another website to mysql for example stats from another site and import to another site, but continue to import it every hour or so?
  15. dagoat10

    Query All Tables in Database

    is there a way to query all the tables in mysql database. Rather than just listing all the tables in the query Something like: SELECT * from *.*; I have a feeling there is a way but i can't remember
  16. dagoat10

    Select option box values

    I am having the hardest time retriving the value of my selection box. Here is my selection code: echo "<form name='Set' method='post' action='Set_Team.php'>"; echo "<td>"; echo "<table border = '0'>"; while($row = mysql_fetch_array($data)) { $ID = $row['ID']; echo "<tr>"; echo...
  17. dagoat10

    PHP update

    I seem to be having a issue with my update statement in php it is labeling everyone the same eventhough the checkboxes are check diffrently in the previous page. $Column="Col"; $Number=1; $ColNum = $Column . $Num; $ColNums= $Column . $Number; $DEBUG="ON"; while($Number < $Nums) {...
  18. dagoat10

    PHP mysql insert issue

    i am having a problem with my insert and delete using php i delete a player and i am left with a blank ID 0 entry spot in my table, i tried to get rid of it with another delete but it is not working inless i manually go into the table and remove the ID 0 myself $query2="INSERT INTO...
  19. dagoat10

    PHP Form varibles disappering

    I am passing a varible to be used in another php form, but when i hit the submit button for the selection form the value of the Previous forms field name disappears. Form 1: <?php echo " <html> <head> </head> <body> <form action='selection.php', method='post'> Table Name: <input type='text'...
  20. dagoat10

    PHP post method passing

    I am trying to pass a variable to a php form but it is not passing through. The lines are the following: echo "<form action='create_table_test2.php', method='post'>"; while($NumCols > 0) { echo "<input type='text' name='Col$ColNum' /> $ColNum++; $NumCols--; echo "<br>"; } echo...

Part and Inventory Search

Back
Top