help me getting started !!!

Thread Solved

Join Date: Jun 2009
Posts: 23
Reputation: chsab420 is an unknown quantity at this point 
Solved Threads: 5
chsab420 chsab420 is offline Offline
Newbie Poster

Re: help me getting started !!!

 
0
  #11
Sep 8th, 2009
that i cant answer as i am not typically that kind of php developer, but i hope so that it could be used
Reply With Quote Quick reply to this message  
Join Date: Jun 2008
Posts: 185
Reputation: aashishn86 is an unknown quantity at this point 
Solved Threads: 9
aashishn86's Avatar
aashishn86 aashishn86 is offline Offline
Junior Poster

Re: help me getting started !!!

 
0
  #12
Sep 8th, 2009
all right...........
thanks
i'll do that and post back how it goes..............
rEaLITy iS aN iLLUSIOn cAUSED bY lACk oF aLCOHOL....
Reply With Quote Quick reply to this message  
Join Date: Sep 2009
Posts: 24
Reputation: rashid47010 is an unknown quantity at this point 
Solved Threads: 1
rashid47010 rashid47010 is offline Offline
Newbie Poster

Re: help me getting started !!!

 
0
  #13
Sep 8th, 2009
try to uninstall the IIS and
because I was facing the same problem that port 80 is already used by some other program.......
Reply With Quote Quick reply to this message  
Join Date: Sep 2009
Posts: 24
Reputation: rashid47010 is an unknown quantity at this point 
Solved Threads: 1
rashid47010 rashid47010 is offline Offline
Newbie Poster

Re: help me getting started !!!

 
0
  #14
Sep 8th, 2009
hi everybody I am new to PHP
just start learning php through online tutorial
I have made one table program but getting PARSE in PRINT LINE
CODE IS GIVEN BELOW:
<html>
<head>
<title>table php file</title>
<?php

$times=2;

if(isset($_POST["submit1"]))
{

$start=$_POST["txtStart"];
$end=$_POST["txtEnd"];
$times=$_POST["txtTimes"];

for($start;$start<=$end;$start++)
{ $answer= $start * $times;
print($start. "multiplied by" .$times. "=" .$answer.) ;
}
}
?>
</head>
<body>

<form name="form1" method="post" action="table.php" size=15>
Start-Number:<input type="text" name="txtStart" value="1" size=15>
End-Number:<input type="text" name="txtEnd" value="10">
Answer<input type="text" name="txtTimes" value=<?php print $times; ?>>
<P>
<input type="submit" name="submit1" value="Answer">
<P>
</form>

</html>
Reply With Quote Quick reply to this message  
Join Date: Jun 2008
Posts: 185
Reputation: aashishn86 is an unknown quantity at this point 
Solved Threads: 9
aashishn86's Avatar
aashishn86 aashishn86 is offline Offline
Junior Poster

Re: help me getting started !!!

 
0
  #15
Sep 8th, 2009
@rashid...
i need IIS too....

i suggest, you start a new thread for your problem to get help faster...
and put your code in the "code tags"
rEaLITy iS aN iLLUSIOn cAUSED bY lACk oF aLCOHOL....
Reply With Quote Quick reply to this message  
Join Date: Aug 2009
Posts: 179
Reputation: Graphix is an unknown quantity at this point 
Solved Threads: 37
Graphix's Avatar
Graphix Graphix is offline Offline
Junior Poster

Re: help me getting started !!!

 
0
  #16
Sep 8th, 2009
If your problem hasent been solved, I am personally very satisfied with XAMPP as it includes apache, mysql, filezilla and mercury in one. I haven't had any problems with it and you just place your files in the htdocs folder. You can download it at http://www.apachefriends.org/en/xampp.html.

You can place your files in the htdocs folder, for example:

The directory you store your files:
C:/xampp/htdocs/myphp/*

You can acces it by opening a browser and use as url:
http://localhost/myphp/*

Any questions?

~Graphix
Reply With Quote Quick reply to this message  
Join Date: Oct 2006
Posts: 1,558
Reputation: ardav will become famous soon enough ardav will become famous soon enough 
Solved Threads: 206
Sponsor
ardav's Avatar
ardav ardav is offline Offline
Anthrax Poster

Re: help me getting started !!!

 
-1
  #17
Sep 8th, 2009
Ditto. XAMPP is great. Using Apache will work better than IIS as it will reflect behaviour on remote sites (usually).

I can understand that you may need IIS if you use asp, otherwise switch to Apache. Current IIS php sites can be moved to the htdocs directory under xampp. You'll need to change your vhost files though.
Twpsyn cythraul. Cawr y dom tarw. Gwybod dim, gofyn dim.
Reply With Quote Quick reply to this message  
Join Date: Jun 2008
Posts: 185
Reputation: aashishn86 is an unknown quantity at this point 
Solved Threads: 9
aashishn86's Avatar
aashishn86 aashishn86 is offline Offline
Junior Poster

Re: help me getting started !!!

 
0
  #18
Sep 9th, 2009
@ardav... ya i usually work on asp..
i am just trying to learn php...

i basically want to learn Drupal and other CMSs...
i downloaded Developerside.net package after reading about it in the drupal cookbook... but haven't had the time to install it yet...

You have any ideas about that ??
thanks
rEaLITy iS aN iLLUSIOn cAUSED bY lACk oF aLCOHOL....
Reply With Quote Quick reply to this message  
Join Date: Oct 2008
Posts: 3,955
Reputation: adatapost has a brilliant future adatapost has a brilliant future adatapost has a brilliant future adatapost has a brilliant future adatapost has a brilliant future adatapost has a brilliant future adatapost has a brilliant future adatapost has a brilliant future adatapost has a brilliant future adatapost has a brilliant future adatapost has a brilliant future 
Solved Threads: 707
Moderator
adatapost adatapost is offline Offline
Senior Poster

Re: help me getting started !!!

 
0
  #19
Sep 9th, 2009
Great tutorials links,

A simple tutorial

PHP Tutorial

SUMMARY: PHP is a powerful tool for making dynamic and interactive Web pages.

PHP is the widely-used, free, and efficient alternative to competitors such as Microsoft's ASP.

In our PHP tutorial you will learn about PHP, and how to execute scripts on your server.
Reply With Quote Quick reply to this message  
Join Date: Sep 2007
Posts: 2,107
Reputation: cwarn23 has a spectacular aura about cwarn23 has a spectacular aura about cwarn23 has a spectacular aura about 
Solved Threads: 180
Sponsor
cwarn23's Avatar
cwarn23 cwarn23 is offline Offline
XReplicator - Genius47

Re: help me getting started !!!

 
0
  #20
Sep 9th, 2009
Originally Posted by aashishn86 View Post
i just need help in configuring the apache server and mysql

i have installed WAMP Server...
when i go to phpMyAdmin
i get this error :


Error
MySQL said:

#1045 - Access denied for user 'root'@'localhost' (using password: NO)

phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in your configuration and make sure that they correspond to the information given by the administrator of the MySQL server.

thanks..
Is the above quote that latest error as I have solved server problems with many windows servers using xampp. So I can understand your troubles. When you receive that error with phpmyadmin it normally means the password has changed. Happened to me once. Turned out Wikimedia changed the password so if you've installed any php scripts, then your password may have been changed to whatever you specified under the mysql section of the cms installation. So to fix this you will need to first find the mysql password you set in the cms installation. Then when you have that password, go to the folder phpmyadmin/config.inc.php then in that file change the following variable:
  1. $cfg['Servers'][$i]['password'] = 'new_password_in_here';
If you haven't installed any php scripts then you may need to do a command line to reset the root password or if you installed a cms (content management system) but can't remember the password then tell me what your cms is and I'll download a copy to locate your config file with the mysql password. Usually the config file is near the base of the installation.
Try not to bump 10 year old topics as it can be really annoying.
http://syntax.cwarn23.net/
Smilies: ^_* +_+ v_v -_- *~*` Want 1 on 1 php help, add me to msn at msn@cwarn23.info
My favourite PC. -- Jumba webhosting
Reply With Quote Quick reply to this message  
Reply

This thread has been marked solved.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the PHP Forum


Views: 714 | Replies: 20
Thread Tools Search this Thread



Tag cloud for PHP
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2010 DaniWeb® LLC