/
home
/
desid573
/
public_html
/
ims2
/
application
/
views
/
email
/
/home/desid573/public_html/ims2/application/views/email
mkdir
upload
Name
Size
Mode
Actions
memberupdate.php
2540
0644
edit
dl
rm
welcome.php
2714
0644
edit
dl
rm
Edit:
/home/desid573/public_html/ims2/application/views/email/welcome.php
(2714B)
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <p>Hi <?=$this->input->post('title')." ".$this->input->post('firstName')?>,<br> Welcome to Ibadan golf club. Find below your registration details and please do not hesitate to inform us if there is any mistake. Thanks. </p> <table style="text-align: left"> <tbody> <tr> <th>Title:</th> <td></td> <td><?=$this->input->post('title') ? $this->input->post('title') : "---" ?></td> </tr> <tr> <th>Name:</th> <td></td> <td> <?=$this->input->post('firstName')." ".$this->input->post('lastName')." ".$this->input->post('otherName')?> </td> </tr> <tr> <th>Phone Number(s):</th> <td></td> <td> <?=$this->input->post('mobile1') . ($this->input->post('mobile2') ? ", ".$this->input->post('mobile2') : "")?> </td> </tr> <tr> <th>Membership ID:</th> <td></td> <td><?=$this->input->post('membershipId')?></td> </tr> <tr> <th>Gender:</th> <td></td> <td><?=$this->input->post('gender') == "M" ? "Male" : "Female" ?></td> </tr> <tr> <th>Amount Deposited:</th> <td></td> <td>₦<?= number_format($this->input->post('amountDeposited'), 2)?></td> </tr> <tr> <th>Street:</th> <td></td> <td><?=$this->input->post('address')?></td> </tr> <tr> <th>City:</th> <td></td> <td><?=$this->input->post('city')?></td> </tr> <tr> <th>State:</th> <td></td> <td><?=$this->input->post('state')?></td> </tr> <tr> <th>Country:</th> <td></td> <td><?=$this->input->post('country')?></td> </tr> </tbody> </table> <p>We hope you enjoy your time with us.</p> <p><small>The Manager, <br>Ibadan Golf Club</small></p> </body> </html>
Save
cmd:
run