Jump to content

Howto open a homepage without any viewable window?


gosu
 Share

Recommended Posts

I´m working on a news post script for my homepage at the moment. So I type something into the box and press 'Send'. Then it should call a php script on my homepage which inserts the data into a mysql database. I thought of 'insert.php?name=bla&message=hi%20world!'. It´s annoying to see the Browser pop up. Is there a way to call the browser hidden? When I start it with @SW_HIDE, nothing happens.

[quote name='d2hacker88' date='Jan 6 2005, 05:10 PM']Can someone please help me out with autoit like gimme a link on how to use it cause i have no experience with computer languages and i'd like to make a program with autoit in order to empress my computer teacher.[right][snapback]52215[/snapback][/right][/quote]

Link to comment
Share on other sites

if that is all, you can just do a urldownloadtofile, or InetGet if you have the unstable.

when you ask the webserver for a webpage, you are doing the same thing a browser does.

$page="http://mysite.com/insert.php?name=bla&message=hi%20world!"
urldownloadtofile($page,"temp.htm")
filedelete("temp.htm")

well something like that, with Inetget, you don't have to wait for the result.

AutoIt3, the MACGYVER Pocket Knife for computers.

Link to comment
Share on other sites

if that is all, you can just do a urldownloadtofile, or InetGet if you have the unstable.

when you ask the webserver for a webpage, you are doing the same thing a browser does.

$page="http://mysite.com/insert.php?name=bla&message=hi%20world!"
urldownloadtofile($page,"temp.htm")
filedelete("temp.htm")

well something like that, with Inetget, you don't have to wait for the result.

<{POST_SNAPBACK}>

cool dude, thanks.

[quote name='d2hacker88' date='Jan 6 2005, 05:10 PM']Can someone please help me out with autoit like gimme a link on how to use it cause i have no experience with computer languages and i'd like to make a program with autoit in order to empress my computer teacher.[right][snapback]52215[/snapback][/right][/quote]

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...