Go Back   Site Owners Forums - Webmaster Forums > Web Programming > Programming General > PHP / mySQL

Notices


Reply
 
Thread Tools Rate Thread Display Modes
Old 12-01-2011, 09:38 PM   #1
tonybrown2387
Registered User
 
Join Date: Nov 2011
Posts: 21
Php

After the consistent use of scripting languages like ASP.Net and JavaScript comes the release of PHP which stands for PHP: Hypertext Preprocessor. Sometimes, it is also referred as personal home pages. Script when created through PHP are normally left for execution on a server which is blended with a popular database i.e. MySQL often. Being an open source tool, one could use it freely. Moreover, it is a cross platform language which lets people develop application for all operating systems. PHP files comes up with a .PHP extension as well as .php3 which contains HTML tags, scripts and other elements. It can be downloaded for free and anyone can learn it easily.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
tonybrown2387 is offline   Reply With Quote

Old 01-29-2012, 11:35 PM   #2
cornerstones
Registered User
 
Join Date: Jan 2012
Location: USA
Posts: 5
How do i connect PHP MySQL to a Database?
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
cornerstones is offline   Reply With Quote
Old 04-16-2012, 09:55 PM   #3
albertjordan
Registered User
 
Join Date: Apr 2012
Posts: 17
HTML is a very simple language to learn and very beneficial, even when you rely mostly upon software to create the codes for you. PHP is used for the dynamic site building.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
albertjordan is offline   Reply With Quote
Old 04-20-2012, 10:13 PM   #4
nicholasvolcker
Registered User
 
Join Date: Apr 2012
Posts: 15
Appropriate names should be given to the web design elements. One needs to follow good naming practice when using HTML for website design. However, roday PHP is getting used extensively for the purpose of website development.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
nicholasvolcker is offline   Reply With Quote
Old 04-21-2012, 05:10 AM   #5
minester
Registered User
 
Join Date: Apr 2012
Posts: 12
@cornerstones,

use mysql_connect, look it up
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
minester is offline   Reply With Quote
Old 04-24-2012, 11:26 PM   #6
franklinmarx
Registered User
 
Join Date: Apr 2012
Posts: 15
As an open source tool, people are free to use it. In addition, it is a cross-platform language, so that people on all operating systems development. PHP files.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
franklinmarx is offline   Reply With Quote
Old 04-29-2012, 11:41 PM   #7
mertonlevin
Registered User
 
Join Date: Apr 2012
Posts: 15
ASP.Net, JavaScript are scripting languages followed by the release of PHP which means Hypertext Preprocessor.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
mertonlevin is offline   Reply With Quote
Old 05-26-2012, 06:22 AM   #8
spaculus
Registered User
 
Join Date: May 2012
Location: India
Posts: 64
Just use the w3schools site for learn and solve any problem in PHP.
spaculus is offline   Reply With Quote
Old 10-30-2012, 07:31 PM   #9
henryc10
Registered User
 
Join Date: Oct 2012
Posts: 33
first you need to create connection to the database

mysql_connect(servername,username,password);

below is an example we store the connection in a variable ($con) for later use in the script. The "die" part will be executed if the connection fails:

<?php
$con = mysql_connect("localhost","peter","abc123");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}

// some code

mysql_close($con);
?>

mysql_close above will close the connection automatically when the script ends.
henryc10 is offline   Reply With Quote
Old 11-02-2012, 02:53 AM   #10
Josephsanaya
Registered User
 
Join Date: Nov 2012
Posts: 7
php stand for php hypertext preprocessor. php programing language is easy language.HTML tags use in php.this web page using post method.php is HTML script.i think php is powerful behind, the scenes scripting language.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Josephsanaya is offline   Reply With Quote
Old 04-25-2013, 05:09 AM   #11
Avilash
Registered User
 
Join Date: Apr 2013
Location: meerut
Posts: 23
php is very simple scripting language to develop websites there are many framework like zoomla, cakephp that are used for php.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Avilash is offline   Reply With Quote
Old 04-25-2013, 11:30 AM   #12
lindawatts307
Registered User
 
Join Date: Apr 2013
Posts: 15
an overview about web development

Purpose for web development can be both individual and professional. Developing a web site is become very smooth process due to current developing tools and technology which is desirable for both users and developers. Having an own website is not a big deal now, each and every small and large business or professional can have their websites and they have actually. A website can be develop for anything we do like, sharing ideas, providing services, selling products, online shows, news, magazines, e-books, tutorials, etc…
lindawatts307 is offline   Reply With Quote
Old 11-06-2013, 12:17 AM   #13
mridul
Registered User
 
Join Date: Sep 2013
Posts: 92
nice post.............
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
mridul is offline   Reply With Quote
Old 02-26-2014, 07:08 AM   #14
alligatortek001
Registered User
 
Join Date: Nov 2013
Posts: 92
PHP is a server-side scripting language designed for web development but also used as a general-purpose programming language. PHP is now installed on more than 244 million websites and 2.1 million web servers. Originally created by Rasmus Lerdorf in 1995, the reference implementation of PHP is now produced by The PHP Group. While PHP originally stood for Personal Home Page, it now stands for PHP: Hypertext Preprocessor, a recursive backronym.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
alligatortek001 is offline   Reply With Quote
Old 02-27-2014, 06:26 AM   #15
ProgrammerGuy
Registered User
 
Join Date: Feb 2014
Posts: 12
You can use msqli_connect to a database - notice the 'i' after mysql. It stands for improved and is considered a more secure and stable way to connect to databases over the older mysql_connect.

Though I've found that I need to do some garbage collection after using it because it opens a thread which is left open for about 2 days to the database which quickly results in all my threads being used - that sucks!

Anyway although you can adjust this setting from within mysql itself I always prefer to code defensively so would recommend that you use the 'thread' services to get the thread id and then kill it when you're done.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
ProgrammerGuy is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Importance of Php Development for Web Development tech.biztech Programming General 35 11-22-2019 12:37 AM
PHP/ apache problem ncjbhd PHP / mySQL 0 10-17-2011 12:23 AM
is it possible to make an php file trough a php code ncjbhd PHP / mySQL 0 09-21-2011 11:49 PM
Question about using php with dhtml tables wryfhk22 PHP / mySQL 0 09-17-2011 01:59 AM
Integrating PHP question wryfhk22 PHP / mySQL 0 09-08-2011 02:52 AM


All times are GMT -7. The time now is 07:07 PM.


Powered by vBulletin Copyright © 2020 vBulletin Solutions, Inc.