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 Mike Lewis 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. NevadaJones

    PHP or .NET?

    .net is MicroSoft, PHP is not. That make the choice clear for most. I do not know .net nor care to research it farther, but since you know a little of both, which is most supported in online forums? Which would you most likely get the best assistance should you need help? People care enough...
  2. NevadaJones

    Lost connection to MySQL server during query

    What error message are you getting? And at least post you connect codes (Changing login info of course.)
  3. NevadaJones

    Geo-targeting suggestions

    OK I see that now. A person whom would normally be welcome on the site could not access it from a different country.
  4. NevadaJones

    Geo-targeting suggestions

    vacunita: It is unlikely that a person would travel to another country just to access a website, but I get your point. A person could very easily use a proxy ip from an authorized country and visit a website if her country is blocked. I don't know why the OP wants to restrict IP's from certain...
  5. NevadaJones

    Geo-targeting suggestions

    geobytes.com has a script that will do that for you. Only con is 1 of every 50 visitors will be taken to an ad site.
  6. NevadaJones

    php mysql connection problem on local machine

    Glad you got it going. When ever you run into a problem, put the die() & error code after your mysql_select_db and mysql_query also. Sam ;
  7. NevadaJones

    MySql & PHP - Making a link out of data collected

    This should work: echo "<a href=\"http://{$Row['url']}\">" . $Row['url'] . "</a>"; Where 'url' is the column name where the url is stored.
  8. NevadaJones

    ? Proper header() code ?

    Then that is what I will start using. Thanks
  9. NevadaJones

    ? Proper header() code ?

    Thanks for the reply. The second header() example of my OP is what I have been and will continue to use now.
  10. NevadaJones

    ? Proper header() code ?

    If I have $url set to: $url = "http://redirecttohere.com/index.php"; Which is the proper way to write the header() line? Header ("Location: " . $url); Header("Location: $url");
  11. NevadaJones

    Is this a security issue?

    This appeared in my error log today and once before. My current settings are: register_globals = Off session.bug_compat_42 = On
  12. NevadaJones

    Virtual Monitor resizing

    Firefox web developer's tools are really great!
  13. NevadaJones

    Virtual Monitor resizing

    I made a Web page with different color tables to use as for a guide in resizing my browsers windows. This is so I can see how pages I am working on will appear with different screen resolution settings. http://www.sam.zoomcities.com/share/screen_resize.html Of course I make my final tests by...
  14. NevadaJones

    Printed only visible code. ??

    Thank you. I like the way that works. It will do for now. I hope that Dreamweaver come out with that feature in the future. Sam ;
  15. NevadaJones

    Printed only visible code. ??

    Many times when I print code there are a lot of lines that I have hidden(minimized) because I don't need to see them. Is there a way I can print out what I am seeing on the screen, in other words, the visible lines and the minimized lines shown as I see them?
  16. NevadaJones

    Possessing radio buttons ??

    A value is assign to $TableName outside of the query. My script is working now. This link. I had not included my mysqli_query() statement inside the brackets with the for loop. Thanks for the replies.
  17. NevadaJones

    Possessing radio buttons ??

    Thank you kaptlid. I had a major problem in my radio button input lines by leaving out the = for values'1', etc. Now the values are being properly passed and I can tell by the echo statement I included for testing. I need to improve my query statement because it is not UPDATEing the table...
  18. NevadaJones

    Possessing radio buttons ??

    I have removed extra code from the input form I posted here. There are three sets of radio buttons each set has the unique name as shown. Because the input buttons I posted are checked they have the indicated value. This information is submitted to the process form by the submit button. <form...
  19. NevadaJones

    File ext when there is more than one period

    Thanks, That works for me. Sam ;
  20. NevadaJones

    File ext when there is more than one period

    What I want to do is pull off the file extension of a file. This works most of the time, but not if a file has more than one period. $filename_ext = strchr($filename, "."); How can I get the extension of a file like: $filename = "this.has.more.than.one.period.ext"; Sam ;

Part and Inventory Search

Back
Top