Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

204
Views
alert and redirect in codeigniter php using javascript not working

i have a function my controller, when the user clicks a button, the function runs and should show the alret box and then redirect the user to the same page, so i did the following code:

public function addtowishlist()
{
if($this->session->userdata('id'))
{
$id =$this->uri->segment(3);
$this->product->addtowishlist($id);               
  echo '<script type="text/javascript">alert("' . $pname . '")</script>';
redirect($_SERVER['HTTP_REFERER']);
}

              }

however the issue is the alert is coming fine but the redirect to same page is not happening, only i get a blank page, can anyone please help me with this, thanks in advance

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Your redirect will execute before alert since PHP is serverside and Javascript is client side, so what you need is redirect with javascript like this

public function addtowishlist() {
 if($this->session->userdata('id')) {
   $id =$this->uri->segment(3);
   $this->product->addtowishlist($id);               
   echo '<script type="text/javascript">
         alert("' . $pname . '");
         window.location.href = "'.$_SERVER['HTTP_REFERER'].'"; ; 
         </script>';
  }
}
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!