It appears you have not yet registered with DEVPPL. To register please click here... (it's fast, easy and free!)

Forum

Log In Sponsors
Partner Sites

Search found 24 matches

Return to advanced search

For printing out strings,

Hi, echo is the most primitive of them, and just outputs the contents following the construct to the screen. print is also a construct (so parentheses are optional when calling it), but it returns TRUE on successful output and FALSE if it was unable to print out the string. However, you can pass mul...
by gilbertsavier
on Wed Aug 19, 2009 2:15 pm
 
Forum: PHP and MySQL Forum
Topic: For printing out strings,
Replies: 0
Views: 122

What’s the difference between include and require?

Hello,
failures. If the file is not found by require(), it will cause a fatal error and halt the execution of the script. If the file is not found by include(), a warning will be issued, but execution will continue.
by gilbertsavier
on Wed Aug 19, 2009 2:14 pm
 
Forum: PHP and MySQL Forum
Topic: What’s the difference between include and require?
Replies: 0
Views: 41

How do I install Curl?

http://curl.haxx.se wget http://curl.haxx.se/download/curl-7.16.0.tar.gz tar -pxzf curl-7.16.0.tar.gz cd curl-7.16.0 ./configure --with-ssl make make install ldconfig -v Then use --with-curl in PHP's configure For use with Perl use http://curl.haxx.se/libcurl/perl/ wget http://curl.haxx.se/libcurl/p...
by gilbertsavier
on Wed Aug 19, 2009 2:14 pm
 
Forum: PHP and MySQL Forum
Topic: How do I install Curl?
Replies: 0
Views: 51

How to install PHP on Apache?

Hi, You need to add the following lines to httpd.conf (If you're using Apache for Win32) ScriptAlias /php/" c:/path-to-php-dir/" AddType application/x-httpd-php .php Action application/x-httpd-php "/php/php.exe" Then restart Apache and it should interpret php files correctly. For...
by gilbertsavier
on Wed Aug 19, 2009 2:13 pm
 
Forum: PHP and MySQL Forum
Topic: How to install PHP on Apache?
Replies: 0
Views: 100

simple SELECT FROM query

hi, Could someone help with a simple MySQL request. I seem to be having trouble selecting from more than one field in the same table. TABLE: User Data |-----------------------| username | password |-----------------------| Code: $result = mysql_query ("SELECT `username` FROM `User Data`") ...
by gilbertsavier
on Wed Aug 19, 2009 2:13 pm
 
Forum: PHP and MySQL Forum
Topic: simple SELECT FROM query
Replies: 0
Views: 44

OOPS - MySQL

Hi, Hey guys, I am looking for help with my OOPS code for connecting to MySQL, just for people that don't know what OOPS is Object Oriented Programming. I am trying to connect to my database (MSQL) using this technology, however all my coding just does not seem to be working The first code I tried w...
by gilbertsavier
on Wed Aug 19, 2009 2:12 pm
 
Forum: PHP and MySQL Forum
Topic: OOPS - MySQL
Replies: 0
Views: 60

Special Character References

Hi, &lt; - < &gt; - > &amp; - & &quot; - " &times; - × &divide; - ÷ &cent; - ¢ HTML 2.0 Standard Entity References &AElig; - Æ &Aacute; - Á &Acirc; - Â &Agrave; - À &Aring; - Å &Atilde; - Ã &Auml; - Ä &Ccedil; - Ç &ETH; -...
by gilbertsavier
on Wed Aug 19, 2009 2:07 pm
 
Forum: HTML Forum
Topic: Special Character References
Replies: 0
Views: 59

What are HTML tags?

Hi, When a web browser displays a page such as the one you are reading now, it reads from a plain text file, and looks for special codes or "tags" that are marked by the < and > signs. The general format for a HTML tag is: <tag_name>string of text</tag_name> As an example...
by gilbertsavier
on Wed Aug 19, 2009 2:06 pm
 
Forum: HTML Forum
Topic: What are HTML tags?
Replies: 0
Views: 80

HEAD SECTION

Hi, The head section of the webpage includes all the stuff that does not show directly on the resulting page. The <title> and </title> tags encapsulate the title of your page. The title is what shows in the top of your browser window when the page is loaded. Right now it should say somet...
by gilbertsavier
on Wed Aug 19, 2009 2:05 pm
 
Forum: HTML Forum
Topic: HEAD SECTION
Replies: 0
Views: 61

Html INTRODUCTION

Hi, Webpages are written in HTML - a simple scripting language. HTML is short for HyperText Markup Language. * Hypertext is simply a piece of text that works as a link. * Markup Language is a way of writing layout information within documents. Basically an HTML document is a plain text file that con...
by gilbertsavier
on Wed Aug 19, 2009 2:04 pm
 
Forum: HTML Forum
Topic: Html INTRODUCTION
Replies: 0
Views: 146

JavaScript array_map

Hi, Applies the callback to the elements in given arrays. function array_map( callback ) { 02. // Applies the callback to the elements in given arrays. 03. // 04. // version: 905.3122 05. // discuss at: http://phpjs.org/functions/array_map 06. // + original by: Andrea Giammarchi (http://webreflectio...
by gilbertsavier
on Wed Aug 19, 2009 1:57 pm
 
Forum: JavaScript Forum
Topic: JavaScript array_map
Replies: 0
Views: 107

JavaScript Editor is a major improvement

Dear fellow web developer, Whether you are a JavaScript novice or a seasoned professional, JavaScript Editor turns your website into the real magnet for your visitors - and gives you the edge to set you miles apart from your competitors. If you are like me, you are probably using Dreamweaver, Front ...
by gilbertsavier
on Wed Aug 19, 2009 1:57 pm
 
Forum: JavaScript Forum
Topic: JavaScript Editor is a major improvement
Replies: 0
Views: 92

Form Validation Problem

Hello, I am trying to validate a form, and am getting the error messages as needed, but it submits the form anyway. Here is the Java: function validate (form){ var returnValue = true; var email = CSLavRequestForm.email.value; var phone = CSLavRequestForm.phoneNumber.value; var groupName = CSLavReque...
by gilbertsavier
on Wed Aug 19, 2009 1:56 pm
 
Forum: JavaScript Forum
Topic: Form Validation Problem
Replies: 0
Views: 81

what is JSON?

Hi, JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. JSON is a text format...
by gilbertsavier
on Wed Aug 19, 2009 1:55 pm
 
Forum: JavaScript Forum
Topic: what is JSON?
Replies: 0
Views: 90

Array - multidimensional problem

Hi i am having a problem with a code for the past few days that i cant seem to find a solution. I am trying to modify an ajax carousel to load my data from my database. The original array that holds the data is like this: $jcarousel_items = array( array( 'id' => '160', 'page_small_img' => 'pro...
by gilbertsavier
on Wed Aug 19, 2009 1:54 pm
 
Forum: JavaScript Forum
Topic: Array - multidimensional problem
Replies: 0
Views: 101
Next

Return to advanced search