Prev: And operation for two image
Next: Sine function
From: Fraser Dickson on 14 Apr 2010 08:02 Hi i wnat to load a webpage through matlab. The webpage i want to load is just a php script that will load a csv file into my SQl database. the php script will run as soon as the webpage is called i supposes i could use ; web http://.. But that makes a visible browser i dont want to actually see any browser i just want to run the script Is there any way of doing this? Thanks
From: Ashish Uthama on 14 Apr 2010 08:16 On Wed, 14 Apr 2010 09:02:05 -0300, Fraser Dickson <fraser.dickson(a)gmail.com> wrote: > Hi i wnat to load a webpage through matlab. The webpage i want to load > is just a php script that will load a csv file into my SQl database. > the php script will run as soon as the webpage is called > > i supposes i could use ; > > web http://.. > > > But that makes a visible browser i dont want to actually see any browser > i just want to run the script Is there any way of doing this? > > Thanks There might be a way to hide the browser. (I dont know). Also, would urlread/write help? If you are an a win machine, you might consider using the COM interface to do this via IE: From info here: http://msdn.microsoft.com/en-us/library/aa752084(VS.85).aspx >> hie=actxserver('InternetExplorer.Application') hie = COM.InternetExplorer_Application >> hie.Visible=1 %you probably dont want to do this. hie = COM.InternetExplorer_Application >> hie.Navigate('www.google.com') ans = -1
|
Pages: 1 Prev: And operation for two image Next: Sine function |