Some Typos on Code :-)
-
Hello,
Just to inform you some typos on your code. ??
- On edit.php line 91.
Recent:
<td><input type="text" name="experience[stare]" class="long" value="" placeholder="Enter State"/></td>
Correction:
<td><input type="text" name="experience[state]" class="long" value="" placeholder="Enter State"/></td>
You wrote “stare” instead of “state”, so state data will go nowhere & wouldn’t show up.
- On view.php line 60.
Recent:
<span class="location info"><?php echo $exp['city'].', '.$exp['state'].' '.$exp['country']?></span>
Correction:
<span class="location info"><?php echo $exp['city'].', '.$exp['state'].', '.$exp['country']?></span>
Just forgot to add coma (,) between state & country.
That’s all from me. Anyway, what a nice plugin… keep up the good work! ??
Thanks,
Bukrie
https://Jakartanese.com & https://IdEA.my.id - On edit.php line 91.
- The topic ‘Some Typos on Code :-)’ is closed to new replies.