jagguy Posted November 20, 2006 Share Posted November 20, 2006 Hi,I run a php script and want to return to another page automatically.I get an error when the headers are resent it says, but I thought this is how it is done.... $sql = "INSERT INTO image2 (id,url,filename,description,del) VALUES(NULL,'http://localhost/php/images/','$file','$desc',NULL) "; $result = mysql_query("$sql") or die("Invalid query: " . mysql_error()); } mysql_close($link);header( "Location: http://localhost/php/addImage4.html" ); //errorexit; Link to comment https://forums.phpfreaks.com/topic/27835-send-header/ Share on other sites More sharing options...
JasonLewis Posted November 20, 2006 Share Posted November 20, 2006 read the sticky thread at the top of this help forum if your getting header errors... Link to comment https://forums.phpfreaks.com/topic/27835-send-header/#findComment-127360 Share on other sites More sharing options...
jagguy Posted November 20, 2006 Author Share Posted November 20, 2006 This seems to just goto the file straight away. I want it to do something then return automatically.<?php header ("Content-type: image/png");//must be in 1st col and line of fileignore_user_abort(true);header('Location: http://localhost/php/upload2.html');//do some image resizing in this file.. Link to comment https://forums.phpfreaks.com/topic/27835-send-header/#findComment-127399 Share on other sites More sharing options...
JasonLewis Posted November 22, 2006 Share Posted November 22, 2006 you mean like include a file? or require_once()? Link to comment https://forums.phpfreaks.com/topic/27835-send-header/#findComment-128417 Share on other sites More sharing options...
jagguy Posted November 23, 2006 Author Share Posted November 23, 2006 I have worked it out, thanks. Link to comment https://forums.phpfreaks.com/topic/27835-send-header/#findComment-128975 Share on other sites More sharing options...
marcus Posted November 23, 2006 Share Posted November 23, 2006 You could have just used<?phpob_start();codestuffhereob_end_flush();?> Link to comment https://forums.phpfreaks.com/topic/27835-send-header/#findComment-128980 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.