Welcome! Log In Create A New Profile

Advanced

PHP Functions

Posted by Kayc78145228 
Announcements Last Post
Announcement SoC Curricula 09/30/2017 01:08PM
Announcement Demarcation or scoping of examinations and assessment 02/13/2017 07:59AM
Announcement School of Computing Short Learning Programmes 11/24/2014 08:37AM
Announcement Unisa contact information 07/28/2011 01:28PM
PHP Functions
August 05, 2013 10:16PM
I find php functions for useful, for code reusability and help manage your code more efficiently.
I really enjoyed functions
Re: PHP Functions
August 06, 2013 03:19PM
Ja big time, doing anything meaningful without the use of functions would be a real pain in the ass.
Re: PHP Functions
August 13, 2013 08:18PM
section 8 on the home-learn (php functions) is on point but i would personally recommend to look at some of the functions in the textbook..

<?php

$error_text = "textbook is better";// node
display_error_message($error_text);

function display_error_message($error_text){
print $error_text;
}
?>
Re: PHP Functions
August 14, 2013 07:02PM
Re: PHP Functions: Completed Functions will come in handy for the Portfolio.
Re: PHP Functions
August 14, 2013 07:37PM
@ shailen72991070

it does not get more real than that
Sorry, only registered users may post in this forum.

Click here to login