w_d_liu1091
New Member
- Messages
- 15
- Reaction score
- 0
- Points
- 0
I've got this script from a admin configuration from a mega file manager script.
but i need help to fix the eregi is deprecated error!
the eregi is located where i coloured it in red.
Please help me!
Thank You!
The script below:
<?php
while($each_file = @mysql_fetch_array($final_query)){
?>
<table width="100%" border="0" cellspacing="0" cellpadding="2" style="border:1px solid #CCCCCC;">
<tr bgcolor="#FFFFFF">
<td width="10%" style="border:1px solid #CCCCCC;"><?=$each_file['file_id']?></td>
<td width="11%" style="border:1px solid #CCCCCC;"><div align="left">
<?php
if(strlen($each_file['file_name_is']) > '2'){
echo '<input type="text" value="'.$each_file['file_name_show'].'" title="'.$each_file['file_name_show'].'" style="width:100%;" readonly>';
} else {
if(eregi('object',$each_file['file_name_show'])){
echo 'Object File';
} else {
echo '<a href="'.$each_file['file_name_show'].'" target="_blank">Link</a>';
}
}?>
but i need help to fix the eregi is deprecated error!
the eregi is located where i coloured it in red.
Please help me!
Thank You!
The script below:
<?php
while($each_file = @mysql_fetch_array($final_query)){
?>
<table width="100%" border="0" cellspacing="0" cellpadding="2" style="border:1px solid #CCCCCC;">
<tr bgcolor="#FFFFFF">
<td width="10%" style="border:1px solid #CCCCCC;"><?=$each_file['file_id']?></td>
<td width="11%" style="border:1px solid #CCCCCC;"><div align="left">
<?php
if(strlen($each_file['file_name_is']) > '2'){
echo '<input type="text" value="'.$each_file['file_name_show'].'" title="'.$each_file['file_name_show'].'" style="width:100%;" readonly>';
} else {
if(eregi('object',$each_file['file_name_show'])){
echo 'Object File';
} else {
echo '<a href="'.$each_file['file_name_show'].'" target="_blank">Link</a>';
}
}?>