Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
3
Posts with Downvotes
3
Downvoting Members
3
1 Commented Post
0 Endorsements
Ranked #2K
~12.4K People Reached
Favorite Tags
Member Avatar for khess

Programming in PHP is fun and easy. It is a very powerful scripting language that takes simple HTML and turns it into a fully-interactive experience for the web user. Let's get started! Note: These tutorials assume that you have a working web server that's capable of displaying PHP code and …

Member Avatar for cwarn23
-8
1K
Member Avatar for mahe4us

Hi all, Onceagain I come back with a query about paypal. I have been developing a site with subscription module. If the user might subscription into the site then they will access all the privileges of the site. Rest of the subscription members have not get their privileges while surf …

Member Avatar for razalakhan
0
159
Member Avatar for veledrom

Hi, I have never use CMS before and want to learn. For a beginner, do you think Joomla would be easy for me to learn or Drupal? Thanks

Member Avatar for peter_budo
0
133
Member Avatar for kira4

This is the first page of my website(AssociationAdd.php). When I clicked the 'Add' button, it shows that : [COLOR="Red"]"Notice: Undefined index: T2 in c:\easyphp1-8\www\efiling\associationaddprocess.php on line 19 Notice: Undefined index: T1 in c:\easyphp1-8\www\efiling\associationaddprocess.php on line 20"[/COLOR] [CODE]<html> <head> <meta http-equiv="Content-Language" content="ja"> <title>Index</title> </head> <div style="position: absolute; width: 1146px; height: 842px; …

Member Avatar for nav33n
-1
138
Member Avatar for j4mes_bond25

I haven't made any website for over 2 years now. Last time I made, I used Dreamweaver 8, however, I've lost my CD now. Since I'm being given a task to make a local community website, I wondered if there're free website designing software available that people can recommend me. …

Member Avatar for xav.vijay
-1
158
Member Avatar for mrcniceguy

I have worked in PHP for 1year and a half,Now i want to develop website using the CMS,and some people suggested it would be better to start with Joomla...i have installed it in my comp,but i reall dont know how to get started. So if there is anyone who knows …

Member Avatar for guru12
0
79
Member Avatar for filch

Hello all, I have the following SQL statement. [CODE]SELECT a.airport_code AS AIRPORTCODE, a.airport_name AS AIRPORT, u.usr_id AS USERID, u.usr_fname AS FIRSTNAME, u.usr_lname AS LASTNAME, u.usr_email AS EMAIL,u.usr_airline AS AIRLINE, u.usr_airline_iatacode AS IATA, t.title AS TITLE FROM users u LEFT JOIN userairportservices uas ON uas.usr_id_users = u.usr_id LEFT JOIN airport a …

Member Avatar for filch
0
125
Member Avatar for MArun25039

Hello, I'd like to create a basic html form where a user can submit their email address for a cooking class. There would only be room for 20 people so I'd like it to accept the first 20 user and display a "check back next month" to anyone past 20. …

Member Avatar for vincent2085
0
155
Member Avatar for Tekkno

I am not really sure where to go with this, but any help I can get would be appreciated. What I am trying to do is put together an array to use with a foreach loop by getting columns from multiple tables. Here is my query: [code=php] $results = mysql_query("SELECT …

Member Avatar for Tekkno
0
83
Member Avatar for harikris2007

pdf_download.php ........................................................................ <?php $file_name=$row['tcb_pdf']; header("Content-type: application/pdf"); header("Content-Disposition: attachment; filename=\"$file_name\""); $data=readfile("../new_books/".$file_name); echo $data; ?> home.php ............................................................................... <td align="center" valign="middle" bgcolor="#FFFFFF"><img src="images/rar.gif"><a href="pdf_download.php?name=<?php echo $row['tcb_pdf'] ?>"><img src="images/button_buy.jpg"></a></td> <td align="center" valign="middle" bgcolor="#FFFFFF"><img src="images/rar.gif"><a href="uploads/<?php echo $row['tcb_pdf'] ?>"><img src="images/untitled.bmp" width="43" height="17"></a></td> </tr>[code]hi, I need a help from anybody. I have a page with pdf …

Member Avatar for guru12
0
117
Member Avatar for StrikeFreedom

hi I'm trying to find a way to create a dynamic form from mysql database and update multiple rows from it. For example let's say I have a database with email and the owner's name. How do I build the script to make php grab the data from the db …

Member Avatar for guru12
0
3K
Member Avatar for dnmoore

Ok I created a website for my Chapter at my school for our Org and I added the weather feature but it never updates itself to match the current weather how can i fix it this is what my code looks like [code] <td width="47%" align="left" valign="top" style="border-right-style:none; border-right-width:medium; border-top-style:none; …

Member Avatar for guru12
0
81
Member Avatar for wistech

Dear Friends I have recently re-designed our company website. We are targeting keywords like [URL="http://www.wisnetsol.com"]website design Dubai [/URL]and [URL="http://wisnetsol.com"]Web design Company Dubai[/URL]. Please give your valueable comments, if Wisnetsol.com is properly designed. It is using Joomla. So what more we should add in it to make user experience better.

Member Avatar for guru12
0
110
Member Avatar for varadharaja

Hi Friendz!!! Am varadharaj new to be this forum,and i would like to share your ideas,about php and more technical...anyone can reply for me... Thanks alot... varadharaj

Member Avatar for guru12
0
68
Member Avatar for trtcom1

Hi there, I am having problems with editing/updating a record. I have 3 tables: Student (studentNum,firstName,lastName,ClassRoom), course (courseID,courseTotalCapacity), course_allocation (studentNum,courseID). I have 3 courses, MATHS=101,BIOLOGY=102,CHEMISTRY=103. The total number of students allowed for each of the 3 courses is courseTotalCapacity = 20. Meaning that only 20 students can register for MATHS, …

Member Avatar for trtcom1
0
339
Member Avatar for versatile36

What is the exact purpose of div and span ?? i'm a little bit confused .....

Member Avatar for MidiMagic
0
89
Member Avatar for ersubhajit

I am getting this problem whenever I login from index.php to admin_area.php. I am giving the codes of the two files. Please help. Index.php [code=php]<?php session_start(); include("../lib/globals.php"); if(isset($_REQUEST['submit'])) { $u_name=$_REQUEST['username']; $pass=$_REQUEST['password']; $sql="select * from `user_table_master` where `user_name`='$u_name' and `password`='$pass'"; $result=mysql_query($sql); $row=mysql_fetch_array($result); $num_of_rows=mysql_num_rows($result); if($num_of_rows>0) { $_SESSION['logged_in']='y'; $_SESSION['user_type']=$row['user_type']; $_SESSION['user_formation']=$row['formation']; $_SESSION['user_name']=$row['user_name']; $_SESSION['name']=$row['name']; $_SESSION['user_id']=$row['user_id']; …

Member Avatar for guru12
0
151
Member Avatar for xuexue

hi guys, i already have a working upload.php, now the problem is that the file cannot accept pdf files? but other than that, it works very well, what do you think should i do with this? [code] echo"<form enctype='multipart/form-data' action='fileRecs.php' method='POST'>"; echo "<input type='hidden' name='MAX_FILE_SIZE' value =1000000/>"; echo "Choose a …

Member Avatar for xuexue
0
76
Member Avatar for ayesha789

Hi, I am using this query for count [ICODE]SELECT Count(ID) from Table[/ICODE] But its showing the count of all the fields which are empty and zeros. I want the count of fields which are empty and zero. please guide me. Thanks. Take care.

Member Avatar for guru12
0
102
Member Avatar for eakinpeter

Hi all Problem is I want to return unique results based on 2 fields: I have a table tags_photos which is a join table and has 2 fields: tagId and PhotoId. I want to create a page which has a list of all tags and a thumbnail against each tag. …

Member Avatar for guru12
0
75
Member Avatar for srimks

Does anyone has "Leave Application Format" where leave is categorised into SICK & EARN LEAVE, here one needs to enter information into mysql throught PHP and retrive it. I have few queries, how do I take care of following - (1) If any public holidays comes between SL or EL …

Member Avatar for guru12
0
80
Member Avatar for IdeaAlex

Hi everybody, My client os looking Wordpress plugins for off-page SEO and social bookmarking - one that automatically distributes updated pages to social bookmarkin sites and article distribution sites. (NO, not the one that helps readers to bookmark individual articles, but one that does autosubmission). Does it even exist? If …

Member Avatar for abhicary
0
84
Member Avatar for NoID

Hello, i would like to know if its any chance of me being able to retrive data by typing ID, so for example if i type 100 and click on get, i want it to echo the "mobile" number. Can someone please help me with that Thank you

Member Avatar for NoID
0
113
Member Avatar for mostafa aedera

[B] [I]please [/I][/B]I need to how tow [B]MySQL databases synchronize [/B]each to other . thanks for everything . mostafa

Member Avatar for guru12
0
50
Member Avatar for gagan22

Hi all, I am making one application. When user will submit a form from frontend and it will go all value in database. After that i am showind this frontend form value in backend. In backend or admin section i am using two button one for submit and other for …

Member Avatar for guru12
0
138
Member Avatar for CFROG

Okay, I'm sure this is an easy one for you guys. You guys really know your stuff and it just seems easier sometimes to go straight to the source then to google and experiment for God knows how long. Forgive me for my ignorance of php. that's just the way …

Member Avatar for CFROG
0
100
Member Avatar for drugoholic

Hello guys, I'm having another css compatibility issue with IE7. If you look at the screenshots attached below, you'll notice that the top menu is working fine in FF and IE8 (without clicking the comp. button) and when click the compatibility button, the whole header goes crazy (check ie7.gif). I …

Member Avatar for drugoholic
0
107
Member Avatar for MArun25039

Hello, I'm having an issue with a MySQL/PHP site I'm working on. I'm new to both. I've seen several posts that were similar or same but was unable to derive a solution based on my code. I have a form that will submit HTML code to a database. I know …

Member Avatar for guru12
-1
5K
Member Avatar for acaciasd

Hi, I wonder if there is a solution to my query; I need to be able to produce a weekly report that will display all daily totals for that week or any previous week. I have toyed around with the weekday() function and the Week() function, but I don't know …

Member Avatar for guru12
0
107
Member Avatar for Sailor_Jerry

I have 3 tables. Company, phone, companyPhone. The company table has an auto_increment companyID primaryKey The phone table has an auto_increment phoneID primaryKey The companyPhone table row is made up the companyID, and the phoneID. On my form the user will enter company information and the company phone number. After …

Member Avatar for Sailor_Jerry
0
141