|
More site info...
|
|
Forum profile page for Coding on http://www.phpbuilder.com.
This report page is the aggregated overview from a single forum: Coding, located on the Message Board at http://www.phpbuilder.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 "Coding" on the Message Board at http://www.phpbuilder.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 Coding:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
125
|
375
|
1,089
|
|
Post:
|
444
|
1,231
|
3,294
|
|
|
Coding Posting activity graph:
|
Top authors during last week:
user's latest post:
while loop output to four...
Published (2009-11-25 20:52:00)
You can do that yourself using the "Mark thread resolved" option under the "Thread Tools" menu.
user's latest post:
Help with escaping
Published (2009-11-25 19:47:00)
you can try this, i found it with google, i don't use js enough to comment further PHP Code: function javascript_escape ( $str ) { $new_str = '' ; $str_len = strlen ( $str ); for( $i = 0 ; $i < $str_len ; $i ++) { $new_str...
user's latest post:
Special characters driving me...
Published (2009-11-24 21:43:00)
Quote: Originally Posted by bunner bob Huh - that's some scary newfangledness. I'm so used to making everything HTML. So your function catches the items that must be converted, leaving the rest? The one for the MS Word characters is because M$ uses its own character set, so the function converts those characters that don't translate well into UTF-8 (or ISO-8859-1, for that matter).
user's latest post:
Text file to .Dat file...
Published (2009-11-24 09:03:00)
I did a google search on a hunch and was right.. that /i dataLink Format V01 specification is for a device which, if I am not mistaken records camera lens information. If this is the case, I can not see the purpose in converting any kind of text file to it? I see they have an application which converts the .dat file they produce into a CSV file to be easily human readable. If I am mistaken on the purpose of the dataLink format please do...
user's latest post:
Parse Error: syntax error - Page...
Published (2009-11-22 17:32:00)
according to the error message that was the line and the file, i found it odd though because i dont remember opening file.
user's latest post:
[RESOLVED] Writing to and...
Published (2009-11-22 19:43:00)
Oh, it worked out! It worked out swimmingly! Working through the sitepoint guide was pretty easy and converting my "Adjacency List" structure to "Modified Preorder Tree Traversal" improved the performance of my application significantly. Also, moving to the new structure made managing the data so, so much simpler (as you suggested it would in your previous reply). My application is considerably more...
user's latest post:
Meta Auto back to previous page.
Published (2009-11-20 19:03:00)
No joy on that. Puts an error on the page. PHP Code: Notice : Undefined index : Alkalinity in / home / computer / public_html / pool / days / calc_updated . php on line 32 Notice : Undefined index : Alk_Needs in / home / computer / public_html / pool / days / calc_updated . php on line 33 Notice : Undefined index : Calcium in / home / computer / public_html / pool / days / calc_updated . php on line 34 Notice : Undefined index : Cal_Needs in /...
user's latest post:
If statement validating under...
Published (2009-11-22 19:21:00)
Hey, thanks for the response, but I'm still having trouble. I read up on the shift operator, and I see why it would be just < (I was used to Java), but when I change it to a single < I get an error 500: Script Execution Failure, Premature end of script headers. Any further help qould be tremendous.
|
|
|
|
Latest active threads on Coding::
Started 11 hours, 59 minutes ago (2009-11-26 16:51:00)
by big.nerd
I would start with Google.
Try keywords such as "CSS Tabs" and "Javascript Tabs".
In order for them to be entirely dynamic you will probably need javascript, ajax as well as PHP & MySQL combined.
Try a tutorial out first and if you have problems come back and we can help you fix it, this isn't small code that can just give you.
Started 16 hours, 45 minutes ago (2009-11-26 12:05:00)
by paulnaj
Hi,
Your 'result' array contains ...
PHP Code:
' yec' =>array(
'three' => 1 ,
'blind' => 2 ,
'mice' => 3 ,
'see how they run' => 4
)
... but I don't see where the last two entries come from ('mice'=>3 and 'see how they run'=>4).
If that's just a ...
Started 1 day, 12 hours ago (2009-11-25 16:10:00)
by dagon
if you use double quotes on the string there will be no issues with
apostrophes
Started 20 hours, 23 minutes ago (2009-11-26 08:27:00)
by johanafm
index.php
PHP Code:
if ( isWhirl ())
$jsVal = 0.075 ;
else
$jsVal = 1.13
echo '<script type="text/javascript" src="file.php?val=' . $jsVal . '"></script>' ;
Just remember that this can't be used for anything other than displaying calculations to the end user. You have to perform the calculations server side again...
Started 2 days, 22 hours ago (2009-11-24 06:45:00)
by dbrown
Remove everything after ....
All,
I'm beside myself with this one. Any help would be appreciated!
I have a string like:
[var0, var1, var2, var3]
I need to remove everything past the first comma (no matter how many other comma's there are, but including the comma) but only between the brackets as there's more to this string....
Started 1 day, 9 hours ago (2009-11-25 19:27:00)
by dagon
http://www.phpbuilder.com/board/show...2#post10593 202
Started 1 day, 8 hours ago (2009-11-25 20:49:00)
by Weedpacket
First thing to do is look at the generated HTML and verify that it is
correct.
|
|
Hot threads for last week on Coding::
Started 11 months, 1 week ago (2008-12-19 02:43:00)
by kdhayanandan
Hi Plz Send the full code..
Started 3 days, 19 hours ago (2009-11-23 09:05:00)
by big.nerd
Gmail has some special requirements,
The easiest thing to do is get a mailer like phpMailer
You can also see a gmail example here .
Follow the directions on their site, if you have any issues/concerns please feel free to post code.
Emails can be quite complex, and although it is better from a learning standpoint to create your own, the available projects are mature and stable.
Started 1 week ago (2009-11-20 00:49:00)
by cbj4074
Writing to and reading from dynamic arrays
I'll preface this by saying that I'm more of a "big picture" developer. The finer nuances of syntax are not my specialty.
I'm looking to take an array, e.g.:
PHP Code:
$someArray = array( 0 , 9 , 10 , 11 , 12 , 23 );
and create...
Started 4 days, 8 hours ago (2009-11-22 20:34:00)
by NogDog
I've found the following headers work with every browser I've tried them on:
PHP Code:
header ( 'Content-Length: ' . $fileSize ); header ( ' Content-Type: ' . $mimeType ); header ( 'Content-Disposition: attachment; filename="' . $fileName . '"' ); header ( 'Content-Transfer-Encoding: binary' ); header ( 'Cache-Control: must-revalidate, post-...
Started 1 week, 1 day ago (2009-11-18 22:00:00)
by BuzzStPoint
Got it...
I was forgetting a ;
It works now.
Started 1 week, 2 days ago (2009-11-17 12:01:00)
by Tali
PHP contact form help
Hi,
I have a contact form , which works fine except 1 thing - from time to time it sends empty emails. I have my emails address as CC every time someone sends response.
I searched the web and saw similar problem, so changed my code accordingly , but still receive empty ones.
This is the code I had first:
...
Started 1 week ago (2009-11-19 22:43:00)
by Weedpacket
So show us how you got it with the for() loop and we'll be able to show you what changes to make.
Or if you've got an array then it's trivial; see join .
Started 1 week ago (2009-11-20 02:18:00)
by Weedpacket
Since [ and ] have a special meaning in PCRE regular expressions, if you
need them to be treated as literal '[' and ']' characters you need to
escape them, i.e., write them in the expression as \[ and \].
Started 1 week, 4 days ago (2009-11-15 15:54:00)
by MovieAt
Started 1 day, 12 hours ago (2009-11-25 16:10:00)
by dagon
if you use double quotes on the string there will be no issues with
apostrophes
|
|