|
More site info...
|
|
Forum profile page for PHP on http://www.sitepointforums.com.
This report page is the aggregated overview from a single forum: PHP, located on the Message Board at http://www.sitepointforums.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "PHP" on the Message Board at http://www.sitepointforums.com is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on PHP:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
375
|
1,146
|
3,297
|
|
Post:
|
1,580
|
4,657
|
12,400
|
|
|
PHP Posting activity graph:
|
Top authors during last week:
user's latest post:
.htaccess rewrite rule issue
Published (2009-11-24 19:40:00)
Quote: Originally Posted by Dan_ I sure can, Where are the error's logged? If you have ftp access & have previlage you can check for error_log or something else.
user's latest post:
how to access this ...
Published (2009-11-26 12:03:00)
@robbin.joe Thank you for the solution. it works perfectly.
user's latest post:
Group by month/year from DATE...
Published (2009-11-26 10:32:00)
So you want this hierarchy? Code: 2009 12 Project data that finished on dec 15th Project data that finished on dec 14th 4 Project data that finished on april 1st 3 Project data that finished on march 22nd 2008 10 Project data that finished on oct 15th 9 Project data that finished on sept 1st ... and so on
user's latest post:
using php to include subpage
Published (2009-11-26 07:38:00)
bio-menu_inc.php PHP Code: <ul id= "biomenu" > <li id= "bio-1" ><a href= "leaders.php?page=1" ></a></li> <li id= "bio-2" ><a href= "leaders.php?page=2" ></a></li> <li id=...
user's latest post:
php loop to split list
Published (2009-11-25 17:59:00)
Quote: Originally Posted by tytyguy dont think so.... He's kinda right.
user's latest post:
Image upload help CMS?
Published (2009-11-24 11:31:00)
I need it to insert into a database otherwise it would be pointless all my form updates into there and front end pulls information from there. Do you know of anyother script that would allow me to do that
user's latest post:
Picture upload problem with IE
Published (2009-11-25 05:00:00)
What part is the upload code? (The upload actually happens before your script is run at all) What do you see when you dump $_FILES? Does it contain what you expect? What does the form submitting to this page look like? Does it have the right enctype?
|
|
|
|
Latest active threads on PHP::
Started 16 hours, 47 minutes ago (2009-11-27 09:24:00)
by crmalibu
see explode() and then feed it to array_slice()
Started 1 day, 15 hours ago (2009-11-26 10:32:00)
by crmalibu
So you want this hierarchy?
Code:
2009
12
Project data that finished on dec 15th
Project data that finished on dec 14th
4
Project data that finished on april 1st
3
Project data that finished on march 22nd
2008
10
Project data that finished on oct 15th
9
Project data that finished on sept 1st
... and so on
Started 2 days, 16 hours ago (2009-11-25 09:53:00)
by Shrapnel_N5
did you mean to check if js support enabled, cookie support enabled, and
popup blocking disabled in user's browser?
Started 17 hours, 43 minutes ago (2009-11-27 08:28:00)
by lampcms.com
What da...?
Why serialize?
The best solution whould be to create a new array and use listing_id as array key. This way it will be guaranteed to be unique since array keys must be unique.
Started 17 hours, 55 minutes ago (2009-11-27 08:16:00)
by guido2004
And what has this got to do with PHP?
Started 3 days ago (2009-11-25 01:50:00)
by paalgg
I have read you post a couple of times, it seems that knowledge of HTML is what you need. You can read about HTML and forms here and here .
A very simple example code for your example:
Code:
<form>
<p>1. If your right wheels are off the pavement, __________
<input type="checkbox" name="question1" id="A" value="A" />A. gradually turn back on the pavement.
<input type="...
Started 18 hours, 30 minutes ago (2009-11-27 07:41:00)
by AnthonySterling
Not wanting to scare you at all, but things could certainly be simplified.
Which is of course, a matter of opinion.
PHP Code:
<?php foreach( range ( 1 , 5 ) as $number ){ printf ( '<div id="tab_%d">' , $number ); include( sprintf ( 'tab_%d.htm' , $number )); echo '</div>' ; } ?>
Started 2 days, 11 hours ago (2009-11-25 14:37:00)
by Mark Baker
I'd say $greetings
$this->world is a reference to a class property within the instance.
Most reputable writers talking about OOP will refer to properties or attributes rather than variables when referring to items like $world thatare defined within the class.
Started 18 hours, 7 minutes ago (2009-11-27 08:04:00)
by lampcms.com
Since you adding elements inside of a loop, you need to make sure that names of form elements are different.
Better to fetch user_id, username from task_table
then fetch result as an array where keys are values of user_id, values are username
then
foreach($result as $userid => $username){
$form->addElement('text', 'user'.$userid, 'Users Name:');
}
Started 22 hours, 55 minutes ago (2009-11-27 03:16:00)
by Shrapnel_N5
yes, you can
but you should do it with one query, using join
|
|
Hot threads for last week on PHP::
Started 1 week, 1 day ago (2009-11-19 13:22:00)
by Shrapnel_N5
there are too much bugs in your code. from probably wrong database schema to sql injection
at least you are checking $row[category2] without actually fetching this $row
Started 4 days, 13 hours ago (2009-11-23 12:48:00)
by rashedirshad
Try to increase timeout properties in my.ini, mysql ini file.
Started 1 week, 1 day ago (2009-11-19 06:08:00)
by guido2004
I won't ask you why three tables contain the same colums
But really you're the one that will have to know from what table the data came, and in what table you'll have to update/add it.
Depending on your query (UNION I guess?), you might add a fixed value in the SELECT, with a value that identifies the table you're querying.
For example:
MySQL Code:
SELECT
jobid
, ...
Started 4 days, 16 hours ago (2009-11-23 10:11:00)
by Alex
adisan,
You need to open the config.php.new file and customize it. Save it as config.php, upload it, and try again.
Alex
Started 3 weeks, 5 days ago (2009-11-01 11:23:00)
by sheardben
Basically you'll need a table with all the restaurants (i presume you're seaching a list of restaurants) along with it's country, zip code, and then a field each for delivery - take out. These values can be 1 for true and 0 for false in these fields.
Then once the form is submitted you need to have a php script something like:
PHP Code:
$specs = "" ; if(isset( $_POST ...
Started 6 days, 19 hours ago (2009-11-21 06:32:00)
by JamesColin
Change host! I too had many frustrations with different stupid rules and settings until I've found dreamhost, but that's just an advise.
On with your problem:
I don't see how inserting values in form field's values could generate a server error, at worst you would have badly formed html, not a server error.
Started 5 days, 23 hours ago (2009-11-22 03:10:00)
by AnthonySterling
What client are you using to view this text in the database? Have you tried using another client application to confirm the text is indeed different?
It may just be your client displaying the text incorrectly.
Started 4 days, 19 hours ago (2009-11-23 06:29:00)
by lampcms.com
I've never heard of it before. I just looked at its description breifly and I don't think I will be using it. I would rather use mnogosearch. Mnogosearch has been around for like 10 years, has extension of php and now has option to distribute the search index between up to 256 servers.
It also has web spider, if you need this sort of thing as well as has all the features I see on sp hider
...
Started 2 days, 16 hours ago (2009-11-25 09:53:00)
by Shrapnel_N5
did you mean to check if js support enabled, cookie support enabled, and
popup blocking disabled in user's browser?
Started 1 week, 1 day ago (2009-11-19 03:34:00)
by Dan Grossman
The easiest and best solution is to install a PDF print driver on the client's computer. They hit print, choose the PDF printer, and they get a PDF file that looks just like what they see on screen. Anything you do in code will be substandard comparatively; websites that make nice PDFs do so separately from how they generate the similar-looking webpages. There's no good HTML-to-PDF library I'm ...
|
|