Wednesday, December 12, 2012

import_request_variables

Sangat lama tidak post any text/news or apa-apa jer la...

Alhamdulillah sudah selesai 'berhijrah'. Even still ambik masa lagi... Tapi syukur, semuanya OK. Selamat tinggal PUO yang disayangi. Dan semoga penghijrahanku ke PTSS memberi sesuatu untuk aku dalam kerjaya yang disayangi ini....

Already finished my inovation project, Syslab Version 1.0, a simple system. Thanks Afifah and Nurul. Project ni bermula di PPK, course yang aku attend yang memaksa kita prepare one project in 1 day. So far so good.
Credit to mr.google

Straight to my posting today.... one of my friend, found this!! 

import_request_variables - error bila dia tolong configure syslab. 

Rupanya, aku terlupa tentang sesuatu.... Lets we learn more on import_request_variables

Tujuan import_request_variables ialah untuk import semua variables berjenis POST/GET/COOKIE ke global scope. Maksudnya, semua variable yang kita hantar, kalau berjenis local akan terus ditukarkan ke global scope variable. 

More examples, baca article ni. Very helpful - http://php.net/manual/en/function.import-request-variables.php

Tetapi, kenapa ada error/warning??


Sebabnya import_request_variables hanya boleh digunakan untuk versi  PHP bermula 4.1.0 hingga kurang dari versi 5.4. Maybe my friend dah install versi PHP yang lebih latest... Ada suggestion untuk fix error, saya search di internet jer. 


1) Remove the import_request_variables string from the disable_functions at php.ini* file
2) Ask your hosting provider to remove the string above if you don't have an access to the php.ini* file
3) Change hosting provider which allows the running of the import_request_variables function.

That all... So, solution untuk syslab? Just  comment code tersebut sahaja, and your program should be ok. Why i love error? Because i 'll learn something....

Ok, Bye... see u next entry =)

Question 1: Introduction to Variable

Based on code below, create a dynamic program that solve problem below: Source Code: #include <iostream> using na...