Jump to content

sdaniels

Members
  • Posts

    46
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

sdaniels's Achievements

Member

Member (2/5)

0

Reputation

  1. Can someone point me to a doc that explains how to make my login page HTTPS? I want to use SSL so that the passwords do not go plain text over the web. I am running Apache on a windows machine. Thanks.
  2. I figured it out for anyone else that might have this issue. If your running windows you need to set the sceduled task like this: C:\PHP\php.exe c:\windows\here.php
  3. I have PHP running on a winXP box. Does anyone know how to run a script from the command line? I need to query the MySql database and generate an email daily from task scheduler.
  4. Perfect, thats what I was lookin for. Thanks for the help on this one!
  5. Will that work for pages that are not encoded with PHP as well?
  6. thats exactly what im looking for. an example of what I need would be something like a link on my site that says yahoo, and when clicked it openes yahoo.com and then submits a post in the search field. Im tryiing to make a page that will store all my usernames and passwords in a table, when i click the link to the site I want it to launch the page and fill out my info automaticly. and for those of you that are going to tell me: yes i am aware that most browsers have a feature that allready does this. but it only works from that pc under my profile, i want to be able to access it from anywhere.
  7. Is it possible to send data to an external website? for instance: if i have a link on a site that I maintain. I wnat to click the link and have it open a different website that I do not maintain and fill out some form info on that site automaticly... can this be done?
  8. ok i lied that did work... I think i got my mind around it now. Thanks for your help. sorry for getting snappy.. I have another question for you if your up for it. $query = "SELECT username FROM useronline"; $result = mysql_query($query); while ($here = mysql_fetch_array($result)) { $name = $here['username']; echo $name . ' '; the username column is going to have a ton of dupliacte entrys... I want the query to just echo the ones that are uneiqe... should i do something like $querey = "SELECT username FROM useronline GROUP BY useronline" or will that not work?
  9. ok iv tried this: $query = "SELECT username FROM useronline"; $result = mysql_query($query); while ($here = mysql_fetch_array($result)) { $name = $here['username']; echo $name . ' '; but that doesnt work either....
  10. Ok, sorry my wife is drving me nuts and making me frusterated... anyhow so your saying that I have to something like this:? $query = "SELECT username FROM useronline"; $result = mysql_query($query); while ($here = mysql_fetch_array($result['username'])) { echo $here . ' ';
  11. are you trying to be a smart ass or help me out? ill ask someone else, i can do without the condesending attitude. thanks
  12. do i need to do a for each on the $here variable?
  13. Right thats what im trying to do.. iv changed the code to: $query = "SELECT username FROM useronline"; $result = mysql_query($query); while ($here = mysql_fetch_array($result)) { echo $here . ' '; but it sill echos 'array' for every value in the useronline field. I need it to echo the value in the table...
  14. I have the following code: $result = mysql_db_query($database, "SELECT username FROM useronline") or die("Failed!"); while ($here = mysql_fetch_array($result, )) { echo $here . ' '; when i echo $here, it simply shows 'array'  instead of each username what am i doing wrong?
  15. nevermind the conf question, im just validating session variables now. The webcam.php issue is fixed.
×
×
  • 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.