PDA

View Full Version : Is there any Tutorial for Integrating


bahattab
09-16-2006, 02:14 PM
hi

Is there any Tutorial for Integrating a php software to vb.

i am intrested in learning something about this subject.

thenks

nico_swd
09-19-2006, 01:34 PM
I doubt it. But if you'd post the code and tell us what you're trying to do, someone might be able to help.

bahattab
09-19-2006, 01:48 PM
hi

Thanks for your reply.

There is some software i want to integrat to vb look like PHProjekt , PHPlist , Moodle , phpFormGenerator , Dew-NewPHPLinks , Crafty Syntax Live Help and AccountLab Plus .

I think it is good sotwares and i hopt that to have it in one enviromnt .

thanks
Regards
Emad Bahattab

odonel
09-19-2006, 05:32 PM
I need a little help too... I think vbull should create a guide for this sort of thing...

this what i have

"string sUserId=Request.QueryString["u"];
if(null==sUserId || sUserId.Length<1){
lblMsg.Text="User Id is a required parameter." + Usage();
return;
}

string sPwd=Request.QueryString["p"];
if(null==sPwd){
sPwd="";
}
"

I would like to pass the username from vb to this .aspx page if the user is logged on, if not, redirect user to logon then send the querry. My first thought was to create a php page that takes the info and send it to the .aspx form. That does not seem like a secure way. I am now thinking of sending a post to the .aspx page, but how do i get the logged on username from vb and redirect if the use is not logged on let me know if you guys know of a better way to do this.. thanx.....