отправка данных из vb.net на php и наоборот
привет участник проекта Кодекса ,
у меня есть код, который отправляет данные из vb.net на PHP. но после того как получите данные от vb.net,он обновит базу данных mysql. проблема у меня есть после обновления в mysql,как сказать vb.net что я обновил свою базу данных..
вот мой код.
activate.php
<?php $serialnum = $_GET['ser']; $company_name = $_GET['comp']; $date_activate = date("Y-m-d"); $check = mysql_query("SELECT * FROM license WHERE serialnumber = '$serialnum' && status = 'DEACTIVATED'"); if($check) { if(mysql_num_rows($check) == 1) { //if exist in table license,update column status = 'activate' and date_activate = now(), check again in table activate //check in table activate //if exist,means it already activate //if not exist,insert into table activate and //the problem is here how to tell vb.net that i already update database } else { //the problem is here to,how to tell vb.net that data is exist } } else { //the problem is here to,how to tell vb.net that query failed } ?>
это мой сценарий в vb.net
activatefrm.ВБ
Private Sub activateBtn_Click(sender As Object, e As EventArgs) Handles activateBtn.Click Process.Start("http://localhost/license/activate.php?ser=" & serialnum.Text & "&&comp=" & compname.Text) End Sub
я надеюсь, что член codeproject сможет мне помочь. спасибо.