PrestwoodBoards.com
-Collapse +Expand

PHP

Search PHP Group:

Advanced
-Collapse +Expand PHP Group Home◄╣
-Collapse +Expand Message Board
-Collapse +Expand Knowledge Base
-Collapse +Expand PHP Store
PRESTWOODSTORE
-Collapse +Expand Members Only
   PrestwoodBoardsAll Groups   

New to PrestwoodBoards?

Sign up, it's free and anyone can join.

Join Today for a free account,
or Sign In if you are already a member.

PHP Group

Welcome Guest!

This page is the PHP Group home page (summary page).


PHP & Delphi for PHP

This group is devoted to traditional PHP scripting and Delphi for PHP.

PHP ImagePHP is a widely-used general-purpose scripting language that is especially suited for web development and can be embedded into HTML. PHP has been used to create some amazing web content, particularly outstanding message boards.

Delphi for PHP brings a full RAD environment with an IDE interface and a rich component library (VCL for PHP) to traditional PHP scripting.

Want to become a moderator?
We are currently looking for someone to moderate our PHP message boards. You should be familiar with generic PHP or Delphi for PHP. If you're interested, send a private message to Mike Prestwood. Once you are a moderator, you will receive an email whenever someone posts.

Want to become an author?
We are currently looking for authors to post to this group's knowledge base. We are looking for generic PHP material as well as material specific to Delphi for PHP and other PHP development tools available.  If you're interested, send a private message to Mike Prestwood or get started by submitting content to our PHP KB Topic (or any subtopic).

PHP Content!
Chat!
PHP Board:
Posts =  10
Threads =  5
Unanswered =  1
Topics =  1
Research!
PHP KB:
Articles =  9
News =  2
10 Min Starts =  1
Code =  19
Links =  4
Translate!
To/From Code:
Topics =  38
Code =  660

What's happening now! PHP Group!

(New, updated, and unanswered.)

New: All Post Types

Message board, knowledge base, article comments, blogs, news, etc.

  Title Type Topic
Sign In To Check If Stuff Is New
38
Hits
1. PHP Constants (define)
In PHP, you declare constants using the define key...
7/15/2010, 10:41:59 AM

Code
PHP  
Sign In To Check If Stuff Is New
888
Hits
2. Download PHP (Install it)
Download page from PHP.Net.
11/27/2008, 10:37:31 AM

Download


Article
Beginners Corner  
Sign In To Check If Stuff Is New
1114
Hits
3. Delphi PHP V
What PHP version does Delphi for PHP support?
6/4/2008, 4:08:12 PM

FAQ
Delphi for PHP  
Sign In To Check If Stuff Is New
1637
Hits
4. A 10 Minute PHP Quick Start
An Introduction to PHP. Installing PHP on Your Computer and Running your First Script.
2/10/2006, 5:28:52 PM

KB Post
Beginners Corner  
More...

New: PHP Message Board Posts

Go To: PHP Message Board
 Thread StarterReplies Last Post Topic
Sign In To Check If Stuff Is New
585
Hits
dropdownbox that is populated from a mysql db?
Hello everyone, I am wanting to create a dropdown list box that is populated from a mysql database, currently I have figured how to query out what information I need from my database but&nbs...
0New!
7/1/2009
PHP
Sign In To Check If Stuff Is New
497
Hits
PHP and Paradox
Hello, Is it possible to retrieve multiple records from a paradox table in php? I can connect and retrieve a single record, but I don't see how, given the php ...
1
Hi Steve, Are you using a select statement right now? In other words, when you say " I can connect ...
2/15/2010
PHP
Sign In To Check If Stuff Is New
4650
Hits
Steal someones php code or settings?
Is there a way to download a php file from a website? I want to make sure my php files and settings are secure so no one can get into my sql database or see my ...
1
Hi David, 3 Suggestions:
  • Secure your include files - With regard to them "downloading" your ...
  • 6/27/2008
    PHP
    Sign In To Check If Stuff Is New
    499
    Hits
    Date Diff - php
    Anyone know how to calculate the number of days between 2 given dates in php? TIA
    1
    Scott, Here is a function to calculate the difference between to dates, in days (assuming the dates...
    8/6/2001
    PHP
    More...

    Unanswered: PHP Message Board

     Thread StarterReplies Last Post Topic
    Sign In To Check If Stuff Is New
    585
    Hits
    dropdownbox that is populated from a mysql db?
    Hello everyone, I am wanting to create a dropdown list box that is populated from a mysql database, currently I have figured how to query out what information I need from my database but&nbs...
    0New!
    7/1/2009
    PHP
    More...

    New: PHP Knowledge Base Posts

    Go To: PHP Knowledge Base
        KB Article KB Topic
    Sign In To Check If Stuff Is New
    153
    Hits

    Code
    1. PHP Constants (define)
    7/15/2010
    PHP
    Sign In To Check If Stuff Is New
    740
    Hits

    Code
    2. PHP Deployment Overview

    With PHP, you simply copy your files to a web server that is capable of running PHP pages.

    3/11/2009
    Beginners Corner
    Sign In To Check If Stuff Is New
    718
    Hits

    Code
    3. PHP Assignment (=)

    PHP uses = for it's assignment operator.

    2/12/2009
    Beginners Corner
    Sign In To Check If Stuff Is New
    776
    Hits

    Code
    4. PHP Logical Operators (and, &&, or, ||, !, Xor)

    Languages Focus: Logical Operators

    Logical operators perform conditional and,

    2/11/2009
    Beginners Corner
    More...

    New: To/From Code

    Go To: PHP To/From Guides

    Code Snippets

      Code Snippet Created
    1. Comments 1/1/2009
    2. Case Sensitivity 1/1/2009
    3. Literals 1/1/2009
    4. Variables 1/1/2009
    5. Assignment 1/1/2009
    6. String Cancatenation 1/1/2009
    7. File Extensions 1/1/2009
    8. Unary Operators 1/1/2009
    9. Associative Array 1/1/2009
    10. If Statement 1/1/2009

    Topics

      Topic Category Created
    1. Array Data Structures 3/20/2010
    2. Comments Language Basics 1/1/2009
    3. Left of String Commands 1/1/2009
    4. Abstraction OOP Details 1/1/2009
    5. End of Statement Language Basics 1/1/2009
    6. Case Sensitivity Language Basics 1/1/2009
    7. Literals Language Basics 1/1/2009
    8. Variables Language Basics 1/1/2009
    9. Assignment Operators 1/1/2009
    10. String Cancatenation Operators 1/1/2009

    Lastest PHP Flashcard

    Our flashcards are part of our library of tidbits.

    Tidbits are FAQs, Definitions, Tips, and Code Snippets from our knowledge base.

    PHP Constants (define)

    In PHP, you declare constants using the define keyword:

    define("CONST_NAME", "Value");

    Constants in PHP are case sensitive. A common standard in PHP is to use all-uppercase letters, with underscores to separate words within the name.

    define('FULL_NAME', 'Mike Prestwood');
    define("AGE", 25);
      
    echo "Your name is " . FULL_NAME . ".";
    echo "You are " . AGE . ".";
    Posted By Mike Prestwood, Post #102185, KB Topic: PHP
     
    353 People Online Now!!  
    Online Now: Sign In to see who's online now!  Not a member? Join Prestwood now. It's free!