2021 Top 4 Best Upcoming Flagship Smartphones : which are the best mobile phones for you..?

Image
  Hi here are the top 8 best upcoming flagship smartphones of 2021 with high-end level features improved cameras stunning design and many other next-generation technologies will be applied that you will really enjoy also the price and the release date of the smartphones are discussed. Number four Asus Zenfone 8 Number three OnePlus 9 Number two Huawei P50 Number one Apple iPad Pro 12.9

Unlink file in CodeIgniter

If you try to use unlink in CI as
$filestring base_url().'uploads/'.$filename;
unlink $filestring );
you will face such error message:
A PHP Error was encountered
Severity: Warning
Message: unlink() [function.unlink]: http does not allow unlinking
Filename: controllers/face.php
Line Number: 109
because CI does not understand the  path we specified, therefore to remove a file we have to either use:
$filestring APPPATH.'../uploads/'.$filename;unlink ($filestring);
or
 define('PUBPATH',str_replace(SELF,'',FCPATH)); // in index.php
and
$filestring PUBPATH.'uploads/'.$filename;   // in controller


Comments

Popular posts from this blog

Import UTF-8 languages from Excel to Database using PHP

2021 Top 4 Best Upcoming Flagship Smartphones : which are the best mobile phones for you..?