Ok, Let me explain.
For example, Let's say that I have a bunch of images on a site. Users can pick images and use them in their profile. They can also choose to crop their image.
Image and crop information is saved in the database. X and Y are coordinates of the top left of crop area. Width and Height are width and height of the crop area.
image = test.jpg
X = 0
Y = 20
Width = 150
Height = 300
Now, I want to display the cropped image on the page for this user, but I don't want to save the cropped image due to server space issues. PHP can do this perfectly. So, here is how I do it.
In my asp page I have a simple HTML img tag as follows.
<img src="CropImage.php?X=0&Y=20&Width=150&Height=300">
When my asp page loads, it tries to load the php page and that page returns an image, so it displays it.
No post, and no info on the URL.
I understand that there is no way to use PHP and ASP together in one page(Other than above). There is however ways of using PHP and ASP in the same site. What I want to know is. Are there any problems with doing this????