I have a PHP script which accepts an argument and adds record in the mySQL database if its not available and if its already available it gives a message 'Record already found'.

How can i read this message from vb.net and do appropriate action such as

if data_is_in_db then msgbos("your record already found in the database")

if data_is_not_in_db then msgbox("your record has been added in the database")

Please help me for this, as i am a newbie.

Thanks

link|improve this question

0% accept rate
feedback

2 Answers

It would be simpler to integrate a database connection inside your VB.NET application instead of trying to communicate with a PHP script. Just my two cents.

link|improve this answer
any guide to do this? – user764490 Sep 18 '11 at 10:41
feedback

You can (amongst many other possibilities) use the http status message for that.

E.g send a 201 Created when the record has been added and a 409 Conflict if the record is already there.

see also:
void header ( string $string [, bool $replace = true [, int $http_response_code ]] )
HttpWebResponse.StatusCode Property

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.