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 strongm 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
  • 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

    Thanks guys, with the quotes at the end of the last statement i got exactly what I wanted.
  3. dagoat10

    Date and Time Based folder

    I see your point, i did happed to solve the issue, but you have given me something to think about, thanks.
  4. dagoat10

    Date and Time Based folder

    Well, I tried the first idea and it was still the date, but without the year and no time. for the second idea, is that like a script I should write?
  5. 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...
  6. 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?
  7. 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...
  8. 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...
  9. 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...
  10. dagoat10

    script to execute mysql command

    is there anything i can do or should i come up with an alternative
  11. dagoat10

    script to execute mysql command

    ...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 Fantasy_Football_2010.* to test1@localhost; show grants for test1@localhost; EOFMYSQL and the user does exist, so why is this happening to me?
  12. dagoat10

    Grant table using php

    ...mysql_query($query) or die(mysql_error()); After that has excuted then i try this: $query2 = "GRANT CREATE ON Fantasy_Football_2010.* TO {$username}@{$dbhost}"; mysql_query($query2) or die(mysql_error()); the second code is what returns: Can't find any matching row in the user table...
  13. dagoat10

    Grant table using php

    yeah i did and it said can't find matching row in user table. what i tried doing is creating the user then give him that grant on a specific database, but it does not go through
  14. dagoat10

    Grant table using php

    it still did not set up a grant for the user
  15. 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?
  16. dagoat10

    mysql/php login page

    ok thanks
  17. dagoat10

    mysql/php login page

    ...is from the form input. i pull the user name and password from the post variables and then send them through a query like this: $sql="SELECT * FROM user WHERE User='$myusername' and Password='$mypassword'"; my main problem is that when it compares the password variable with the one...
  18. dagoat10

    mysql/php login page

    well only thing that seems to work for my version is base64_encode and base64_decode.
  19. 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...
  20. 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

Part and Inventory Search

Back
Top