Profile & Portfolio

Tuesday, July 10, 2007

Profile
////
Name Mohd Firdaus bin Mohd Rasidi
Email

ayus_80@hotmail.com

Contact

+6013.2101970

Education Computer Science/Information Technology, University Technology of Malaysia
Application skills PHP, VB6, MySql, HTML, AJAX, Linux, Windows, Flash, Photoshop, Client-Server Desktop Application
Freelance Experience 4 Years


Portfolio
Sekawan.Net | www.sekawan.net
////
Client Viscom Enterprise
Description Malaysia's free advertising directory that allow free advertisment posting for business, product or service and reach a large audience of diverse interests.
Duration 5 months
Development Tools PHP, MySQL Database, AJAX, Apache Web server, Linux, Adobe Photoshop, Macromedia Flash 8, Dreamweaver MX


Smart Generation | www.smartgeneration.com.my
////
Client Flarestudios Sdn. Bhd. for KPDN HEP
Description A portal to educate young generations to become a good consumer
Duration 4 months
Development Tools PHP, MySQL Database, Linux RHEL 3.0, AJAX, Apache Web server, Adobe Photoshop, Macromedia Flash 8, Dreamweaver MX




KPJ Portal System | www.kpj.com.my
////
Client Kumpulan Perubatan Johor (KPJ)
Description Complete portal system for Kumpulan Perubatan Johor equipped with Content Management System (CMS)
Duration 3 months
Development Tools PHP, MySQL Database, Apache Web server, Adobe Photoshop, Macromedia Flash 5.0, Dreamweaver



Kuala Lumpur Official Website | www.kualalumpur.gov.my
////

Client Dewan Bandaraya Kuala Lumpur
Description Kuala Lumpur official website. Provide tourism information about Kuala Lumpur such as historical values, facilities, hotels, transportation and maps
Duration 4 months
Development Tools PHP, MySQL Database, Linux RHEL 3.0, Apache Web server, Adobe Photoshop, Macromedia Flash 5.0, Dreamweaver 4.0



Integrated Parliament Management System | portal.parlimen.gov.my
////
Client MU-Softmedia Sdn. Bhd. for Parliament Malaysia
Description An integrated parliament management system developed for Parliament of Malaysia. Consists of 19 automation modules to expedite, automate and enhance their existing manual works.
Duration 8 months
Development Tools PHP, MySQL Database, Linux RHEL 3.0, Apache Web server, Dreamweaver MX


Capacity and Routing System (CARS)
////
Client MU-Softmedia Sdn. Bhd. for Celcom M'sia. Bhd.
Description Developed for Celcom Malaysia Berhad as a workflow management system to expedite, automate and enhance the existing routing and capacity workflow as well as providing an audit tool for all the existing switches.
Duration 5 months
Development Tools PHP, Perl, MySQL Database, AJAX, Perl, Apache Web server, Linux, Adobe Photoshop, Macromedia Flash 8, Dreamweaver MX

Al-Ukhuwwah Community Portal | www.al-ukhuwwah.com
////
Client Al-Ukhuwwah community members
Description Closed-community portal for Al-Ukhuwwah community members
Duration 3 months
Development Tools PHP, MySQL Database, Apache Web server, Adobe Photoshop, Macromedia Flash 5.0, Dreamweaver

Business Management and Inventory System (SISPEN)
////
Client Nurklasik Engineering Sdn. Bhd.
Description Developed for Nurklasik Engineering Sdn. Bhd. for their inventory and business management system.
Duration 2 months
Development Tools PHP, MySQL Database, Apache Web server, Adobe Photoshop, Macromedia Flash 5.0, Dreamweaver

Construction Estimation System
////
Client ENZ Enterprise
Description A system for construction company in building construction procedure and budget estimation
Duration 2 months
Development Tools Visual Basic, Windows 9x, 2000, XP, ReportmanX (Reporting Tools), Crystal Report 9 Enterprise

suggestion pada input text

Wednesday, May 09, 2007

Pada input text, akan disenaraikan cadangan perkataan utk dimasukkan. Macam nak masukkan alamat e-mail, baru taip "a", dia senaraikan email2 yang ada huruf a sbg cadangan

<?php
$sql="SELECT * FROM ipms_user a, ipms_ref_area b WHERE a.user_type = 'm' AND a.seating_group = 'R' AND a.area_id = b.area_id";
$res = mysql_query($sql) or die(mysql_error());
?>

<form name="form1" method="post" action="<?php echo $_SERVER['PHP_SELF'].'?module=aum&op=senaraiSoalanMP&ptrid='.$ptrid.''?>">
<br><br><br>
<strong>Pilih MP :</strong>
<script language="javascript" type="text/javascript" src="actb.js"></script>
<script language="javascript" type="text/javascript" src="common.js"></script>
<?
$i=0;
$senarainama="";

while ($row = mysql_fetch_array ($res))
{
$ar_dato[$i] = $row['full_name']." [".$row['area_name']."]";
$i++;
}

for($i=0; $i<count($ar_dato);$i++) {
$senarainama .= "'".str_replace("'", "\'", $ar_dato[$i])."',";
}
?>
<script>
var customarray=new Array(<? echo $senarainama ?>'');
</script>
<input type='text' style='font-family:verdana;width:300px;font-size:12px' id='tb' name='mp' value=''/>
<script>
var obj = actb(document.getElementById('tb'),customarray);
//setTimeout(function(){obj.actb_keywords = custom2;},10000);
</script>
<p>
<input type="reset" name="Reset" value="Batal">
<input type=hidden name="ade" value=1>
<input type="submit" name="Submit" value=" Pilih MP " onClick="return validate(form1)">
</p>
</form>
ayus dan syuhada
www.nursyuhada.com

Output a formatted string

Tuesday, May 08, 2007

nak angka 1 jadi format 000001
Bagi insert dalam db, guna sprintf
$angkagilir = sprintf("%06d",$list_id);

sekadar paparan, guna printf
$angkagilir = printf("%06d",$list_id);

hadkan titik perpuluhan
$metrica = 5.123;
$ra = 2.345;

echo ($metrica - $ra); // 2.778
printf("%.1f",($metrica - $ra)); // 2.8
printf("%.6f",($metrica - $ra)); // 2.778000


ayus dan syuhada
www.nursyuhada.com

MySQL Last ID

Sunday, April 08, 2007

Digunakan untuk dapatkan id terakhir selepas data dimasukkan

$qs = "INSERT INTO xxxxx SET xxx=xxxx"; //SQL statement
$db->db_insert($qs); // Masukkan dlm db
$issued_id = mysql_insert_id(); //umpukkan pd satu pembolehubah

Jadi, $issued_id boleh digunakan untuk membuat pengenalan kepada masukan2 data yang lain, yang memerlukan id tersebut.


ayus dan syuhada
www.nursyuhada.com

Meta Refresh

Thursday, March 08, 2007

Meta Refresh bertujuan untuk membawa user kepada page yang lain

Contoh ni, ia berada di luar dari php, iaitu luar dari <?php ... ?>. kiranya html biasa la ni

<meta http-equiv="refresh" content="3;URL=index.php?module=aum&op=inbox&type=<? echo $_POST[type]; ?>">



ayus dan syuhada
www.nursyuhada.com