I've got this code to send information via Inet.

VB Code:
  1. strMsg = Replace(Text2.Text, vbCrLf & vbCrLf & vbCrLf, "</p><br /><p>")
  2. strMsg = Replace(strMsg, vbCrLf & vbCrLf, "</p><p>")
  3. strMsg = "<p>" & Replace(strMsg, vbCrLf, "<br />") & "</p>"
  4.  
  5. Inet1.OpenURL ("http://www.mysite.com/admin/test.php?body=" & strMsg)

Can I do it the other way around now, say enter 3 to a txtbox then

VB Code:
  1. Inet1.OpenURL ("http://www.mysite.com/admin/getinfo.php?id=" & tetxbox1.text)

and with this populate the rest of my boxes with it's info???

can this be done??