Before I started on PHP/SQL about 6 months ago, I had mastered VB6 coding, so I have taken to PHP/SQL very, very well, and have coded many fully functional CMS websites etc.
In VB6, there is a function called "GetBetween".
Here is an example of this function in VB6:
Private Sub form_load()
html = Inet1.Execute("http://google.com")
GoogleBanner = GetBetween(html, "<img src=", ">")
What that would do, is set the HTML of Google.com to the var named "html".
Then, it would get what is between 2 peice of said HTML code, within the "html" var, and set it to a var. As PHP programmers, this should be easy for you guys to understand.
Is there anyway to do this kind of thing in PHP?
- Mike