I am an ASP developer, so I relate everything to ASP. I am trying to teach myself PHP. Is there something in PHP that does the same as Response.End in ASP?
Printable View
I am an ASP developer, so I relate everything to ASP. I am trying to teach myself PHP. Is there something in PHP that does the same as Response.End in ASP?
without knowing what Response.End does exactly i'd have to guess something likebut don't count on it ;)PHP Code:exit;
Ahhso I was right ;)Quote:
response.end which effectively halts a script in it's tracks.
Yeah, I guess if I am asking PHP people, I should explain ASP stuff.
Exit is just what I needed thanks