active questions tagged php - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T10:34:37Zhttp://stackoverflow.com/feeds/tag/phphttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1839043/swapping-a-string-where-space-is-found-in-php0Swapping a string where space is found in phpChris2009-12-03T10:28:39Z2009-12-03T10:32:19Z
<p>Hi,</p>
<p>I need to implement the following functionality:</p>
<p>I have a name field which contains both name and surname. This is stored in a database and is in the order 'surname name'.</p>
<p>I am implementing a script which searches through these records. Currently, I managed to check if a string contains a space, if it contains a space it means it is a name and not an ID Card Number for instance. Here is the code:</p>
<pre><code>$query = "John Doe";
$checkIfSpaceExists = strpos($query, " ");
if ($checkIfSpaceExists == "")
{
//No Space therefore it is not a name
}
else
{
//Contains space
$queryExploded = explode(" ", $query);
foreach ($queryExploded as $q)
{
//Here I need the functionality so that if someone entered John Doe
//2 different strings are saved, which are
//$string1 = John Doe
//$string2 = Doe Johns
//If the name consists of 3 parts, strings for every combination is saved
}
</code></pre>
<p>Then I will insert these strings in an SQL statement with the LIKE attribute and there will be a LIKE for both JOHN DOE and DOE JOHN. Hence, if the user can either enter John Doe or Doe John in order to find the result.</p>
<p>Any suggestions on how to do this?</p>
<p>Many thanks</p>
<p>chris</p>
http://stackoverflow.com/questions/1838971/mysql-ifexpr1-expr2-expr3-but-i-dont-want-any-expr3-if-expr3-then-dont-outpu0MYSQL IF(expr1,expr2,expr3) but I don’t want any expr3 (if expr3 then don’t output anything. Mint2009-12-03T10:14:29Z2009-12-03T10:29:26Z
<p>As the title says, I just want an output if the if is matched, if it’s not matched then I don’t want any output.</p>
<p>I currently have this, but it gives an error obviously</p>
<pre><code>...rFormat=IF(ISNULL(rFormat), VALUES(rFormat),UNCHANGED)…
</code></pre>
<p>I looked around <a href="http://dev.mysql.com/doc/refman/5.4/en/control-flow-functions.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.4/en/control-flow-functions.html</a> but didn’t really find out how to do it.</p>
<p>This question is kinda related to <a href="http://stackoverflow.com/questions/1837912/only-update-the-mysql-field-if-the-field-contains-null-or-0">http://stackoverflow.com/questions/1837912/only-update-the-mysql-field-if-the-field-contains-null-or-0</a></p>
<p>This is used in context of: (as seen in the above URL)</p>
<pre><code>………
ON DUPLICATE KEY UPDATE
rFormat=VALUES(rFormat),
rFiles=IF(ISNULL(rFiles), VALUES(rFiles), VALUES(rSizeMB)),
rText=VALUES(rText);
</code></pre>
http://stackoverflow.com/questions/1838831/solar-php-framework0Solar PHP frameworkdyve2009-12-03T09:44:38Z2009-12-03T10:25:28Z
<p>We are currently looking joining an open source PHP farmework project instead of continuing to work on our own PHP MVC code. Likely candidates are Yii and Solar, because they appeal to our own coding style, have tackled issues that we feel need tackling.</p>
<p>I realize there are plenty of PHP frameowrk related questions on SO already. However, I'm having a really hard time finding people that actually use one of these (esp. Solar) in a real world environment.</p>
<p>So, my question: did anyone work a real life project with one of these? How did it work out for you? What were the major issues?</p>
<p>I'm not looking for benchmarks or excitement about the theories behind each of these. It's clear that their creators of both frameworks did a tremendous job. What I want to know is:</p>
<ul>
<li>did you use it?</li>
<li>did you like it?</li>
<li>pro's and cons based on real world use?</li>
</ul>
http://stackoverflow.com/questions/1838427/php-framework-recommendation0PHP Framework recommendation?thedp2009-12-03T08:18:15Z2009-12-03T10:19:35Z
<p>Hi,</p>
<p>I'm pretty much new to PHP and still learning as I go. (aren't we all)
I'm working on a Web 2.0 startup and I wonder what PHP Framework should I use.</p>
<p>It must be free and of course enables commercial use, supports AJAX, DB, etc.
And I would prefer that it didn't force JSON when using AJAX, I think XML is better... I don't know :)</p>
<p>What do you recommend?</p>
<p>Thank you.</p>
<p>-- EDIT:</p>
<p>I found the Zoop Framework, it looks powerful!
What do you think?</p>
http://stackoverflow.com/questions/1838811/how-are-you-mapping-database-records-to-physical-files-such-as-image-uploads0How are you mapping database records to physical files such as image uploadsIshu2009-12-03T09:42:03Z2009-12-03T10:14:25Z
<p>37 signals suggests id partitioning to accomplish this thing..</p>
<p><a href="http://37signals.com/svn/archives2/id%5Fpartitioning.php" rel="nofollow">http://37signals.com/svn/archives2/id%5Fpartitioning.php</a></p>
<p>Any suggestions would be more than welcome.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1838801/how-to-store-tags-in-a-database-using-mysql-and-php0How To Store Tags In A Database Using MySQL and PHP?php2009-12-03T09:40:37Z2009-12-03T10:10:11Z
<p>I wanted to create a database that will store the tags that users enter for there questions and then display them all for each individual question posted something like here on SO.</p>
<p>Here is the table that does everything for me know.</p>
<pre><code>CREATE TABLE questions_tags (
id INT UNSIGNED NOT NULL AUTO_INCREMENT,
url TEXT NOT NULL,
tag VARCHAR(255) NOT NULL,
count INT NOT NULL,
PRIMARY KEY (id)
);
</code></pre>
<p>I know this is not correct what other table or tables do I need and what do I need to change to this table if needed.</p>
http://stackoverflow.com/questions/1838783/time-of-day-script1Time of day scriptBift2009-12-03T09:36:24Z2009-12-03T10:08:07Z
<p>Hi all,</p>
<p>I have a small script that depending on the time and day; I would like it to output different things:</p>
<pre><code><?php
$currenttime = ((date("H")+7). ":" .date("i"));
if ($currenttime >= "16:30") {
$tomorrow = mktime(0, 0, 0, date("m") , date("d")+2, date("Y"));
$jsdate = (date("Y"). "-" .date("m"). "-" .(date("d")+1). "-16-30");
}
else{
$tomorrow = mktime(0, 0, 0, date("m") , date("d")+1, date("Y"));
$jsdate = (date("Y"). "-" .date("m"). "-" .date("d"). "-16-30");
}
echo " Time left for delivery on <b><center>" .date("l \\t\h\e jS F", $tomorrow). "</b>:</center>";
?>
<center>
<script>
// deadline(date, width, height, style, background, number color, small text color);
deadline("<? echo $jsdate; ?>", "220", "37", "digital2", "#FFFFFF", "#000099", "#000000");
</script>
</center>
</code></pre>
<p>For instance on a Monday before 16:30 it would need the following:</p>
<ul>
<li>Time left for delivery on Tuesday the {date} of {month}</li>
<li>Then display how long left until 16:30 in DD HH MM SS format(Preferable to be servertime rather than users local time.)</li>
</ul>
<p>Then after 16:30 on a Monday it would need to read:</p>
<ul>
<li>Time left for delivery on Wednesday the {date} of {month}</li>
<li>Then display how long left until
16:30 in DD HH MM SS
format(Preferable to be servertime
rather than users local time.)</li>
</ul>
<p>Then from 16:30 on Thursday until Monday 16:30 it would need to read:</p>
<ul>
<li>Time left for delivery on Tuesday the {date} of {month}</li>
<li>Then display how long left until
16:30 in DD HH MM SS
format(Preferable to be servertime
rather than users local time.)</li>
</ul>
<p>I hope this all make sense and thanks for looking.</p>
<p>Ta,
B.</p>
http://stackoverflow.com/questions/1838925/are-paypal-cookies-linked-to-an-ip-address0Are PayPal cookies linked to an IP address?mayfly2009-12-03T10:05:20Z2009-12-03T10:05:20Z
<p>I have been experimenting with curl for accessing the PayPal payment authorisation site using PHP.</p>
<p>e.g. </p>
<pre>
...
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $nvp);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$res = curl_exec ($ch);
preg_match_all('/Set-Cookie: .*/', $res, $cookieMatches);
foreach ($cookieMatches[0] as $cookieMatch)
header($cookieMatch);
preg_match('/Location: .*/', $res, $locMatches);
header($locMatches[0]);
header('Vary: Accept-Encoding');
header('Strict-Transport-Security: max-age=500');
header('Transfer-Encoding: chunked');
header('Content-Type: text/html');
</pre>
<p>The principle being simply to reflect the original redirect (I am sure there is a simpler way to do this). However, the response from PayPal seems to indicate some kind of cookie error.</p>
<p>My hunch is that the cookie has been linked to the originating machine in some way. Can anyone confirm this, or am I just missing something obvious!</p>
http://stackoverflow.com/questions/1834044/zend-framework-cant-find-standard-view-helpers0Zend Framework can't find standard view helpersscriptha2009-12-02T16:23:44Z2009-12-03T09:54:49Z
<p>I'm trying to use a View helper inside a view.
I put </p>
<pre><code>echo $this->formCheckbox('foo');
</code></pre>
<p>in the view, but it errors out and tells me FormCheckbox.php /application/modules/user/views/helpers/FormCheckbox.php can't be found. Why isn't it loading Zend_View_Helper_FormCheckbox in /Zend/View/Helper? The manual states</p>
<blockquote>
<p>The default helper path always points
to the Zend Framework view helpers,
i.e., 'Zend/View/Helper/'. Even if you
call setHelperPath() to overwrite the
existing paths, this path will be set
to ensure the default helpers work.</p>
</blockquote>
http://stackoverflow.com/questions/1838019/approach-for-site-down-for-maintenance1approach for "site down for maintenance"Ygam2009-12-03T06:20:52Z2009-12-03T09:47:34Z
<p>I have been using Joomla and I love its administrative facility to put the site down for maintenance. As I have seen, all requests to the site if it is in maintenance mode is routed to a single page. If I want to add my own "site down for maintenance" module for a non-Joomla site, how do I do this? I am using an MVC framework in PHP called Kohana in its version 2 which is similar with Codeigniter. I have a Router class where I can control where a certain address go. The only approach I can think is redirect every request to a particular controller function when site is down, but how do I do this? I can't possibly manually re-route all urls right?</p>
http://stackoverflow.com/questions/1838173/html-email-problem-with-posted-php-variable0html email problem with posted php variableAhmet vardar2009-12-03T06:59:12Z2009-12-03T09:45:59Z
<p>Hi</p>
<p>I am working to send email with the html body. Body html is posted by php variable with ajax. but all html will be ignored.</p>
<p>for example in email.php</p>
<p>HTML element</p>
<pre><code><textarea id="html" cols="20" name="TextArea1" rows="2">HTML code is here</textarea>
</code></pre>
<p>Javascript</p>
<pre><code>var html = $("#html").val();
$.post("function.php", { html: html }, function(data) {
if(data){
//do sth
}
});
</code></pre>
<p>and in function php</p>
<pre><code>$body = "";
$body .= $_POST['html'];
//send email
</code></pre>
<p>I tried <code>html_entity_decode</code> but no luck. the email is sent, comes without html elements. how can i do this ?</p>
<p>Thanks</p>
<p>EDIT: I got the problem, in HTML there is ' character and it disrupts the HTML structure. </p>
<p>But how can i avoid this, i still don't know...</p>
<p>EDIT 2 : stripslashes() made it ! Thanks...</p>
http://stackoverflow.com/questions/1838794/php-image-creation-from-hex-values-in-database0PHP image creation from hex values in database logic-unit2009-12-03T09:38:47Z2009-12-03T09:42:07Z
<p>I've got the code below to pull hex values from a database and create an image of that colour. There's over a thousand values, so it's looping to create an image for them all. It seems to work fine except it just keeps overwriting the first image (0.jpg) instead of creating new ones 0.jpg, 1.jpg 2.jpg etc. Any idea where I'm going wrong?</p>
<p>Oh yeah, I'm converting the hex to rgb in there too, that works fine.</p>
<pre><code><?php
require ('connect.php');
$sql = mysql_query("SELECT * FROM hex")
or die(mysql_error());
while($colors = mysql_fetch_array( $sql ))
{
$x = 0;
$imgname = $x.".jpg";
$color = $colors['value'];
if (strlen($color) == 6)
list($r, $g, $b) = array($color[0].$color[1],
$color[2].$color[3],
$color[4].$color[5]);
$r = hexdec($r); $g = hexdec($g); $b = hexdec($b);
header("Content-type: image/jpeg");
$image = imagecreate( 720, 576 );
imagecolorallocate($image,$r, $g, $b);
imagejpeg($image, $imgname);
imagedestroy($image);
$x++;
}
?>
</code></pre>
http://stackoverflow.com/questions/1837309/if-uses-havent-accept-payment-unset-session-after-5-10-min-php1if uses haven't accept payment, unset session after 5-10 min. PHPwilliam 2009-12-03T02:43:30Z2009-12-03T09:40:55Z
<p>Hey</p>
<p>I', working with a small webshop, (includes a simpel online store - no users requires). </p>
<p>I need to find out if an session user haven't "accepted" the payment after.. 5-10 min.</p>
<p>If not, I have to "roll-back" the store and set the current shop sessions to null. Any helps how to do it? Or examples would be great.. </p>
<p>thx for now </p>
http://stackoverflow.com/questions/1836889/select-duplicates-with-php-mysql-for-merging-process0Select duplicates with PHP & MySql for merging processEricP2009-12-03T00:30:24Z2009-12-03T09:17:00Z
<p>I wrote some code to select duplicates and group them using first and last names. I gather them into a multidimensional array and dedupe/merge them using jQuery/Ajax on the resulting page. I would like to ask if there is a better method of creating the array than how I'm doing it. Here is my code. Thank you.</p>
<pre><code>$dataArr=fetchDups($conn, 13, 5); // get a few at a time
print '<div style="clear:both;"></div><pre>';
print_r($dataArr);
print '</pre><div style="clear:both;"></div>';
function fetchDups($conn, $client_id, $limit='')
{
$sql=' SELECT * FROM `contacts` WHERE `clientid`=\'13\' GROUP BY fname, lname ';
//$sql=' SELECT DISTICT fname, lname, * FROM `clients` WWHERE `clientid`=\'13\' ';
$res=mysql_query($sql, $conn)or die(mysql_error());
$contactsRow=array();
while($row=mysql_fetch_array($res)){
echo $row['fname'].'<br>';
$contactsRow[]=$row;
}
mysql_freeresult($res);
$dataArr=array();
$i=0;
$limitNum=0;
//----------------------------------
foreach($contactsRow AS $rowNew){
$sql=' SELECT * FROM `contacts` WHERE `clientid`=\'13\' AND `id`!=\''.$rowNew['id'].'\'
AND (`fname` = \''.$rowNew['fname'].'\' OR `lname` = \''.$rowNew['lname'].'\')
';
//echo $sql;
$res=mysql_query($sql, $conn)or die(mysql_error());
$rowCountDup=mysql_num_rows($res);
if($rowCountDup>0){
$d=0;
$dataArr[$i]=array();
$dataArr[$i][$d]=$rowNew;
while($rowNew=mysql_fetch_array($res)){
$dataArr[$i][($d+1)]=$rowNew;
$d++;
}
$i++;
$limitNum++;
}
// limit the results. too many crashes the browser
if($limitNum==$limit){
break;
}
}
mysql_freeresult($res);
return $dataArr;
}
</code></pre>
http://stackoverflow.com/questions/1838616/get-meta-information-title-and-all-images-of-any-webpage-using-php0Get meta information, title and all images of any webpage using phpavinash2009-12-03T08:58:07Z2009-12-03T09:10:14Z
<p>Hi Friends,</p>
<p>I want to get all the meta information like description, title, keyword etc of any web page using php.</p>
<p>I am using <code>*get_meta_tags*</code> php function but its displaying warning. I have paste the error below.</p>
<p><strong>Warning: file_get_contents() [function.file-get-contents]: php_network_getaddresses: getaddrinfo failed: No such host is known. in filename......</strong></p>
<p>And how could i get all images on the web page.?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1838585/passing-custom-variables-to-paypal-ipn0Passing custom variables to paypal IPNspotlightsnap2009-12-03T08:51:27Z2009-12-03T09:05:58Z
<p>Hi,</p>
<p>I am trying to pass custom variables to paypal IPN. I can manage to pass one variable. But i don't know how to pass multiple variables.</p>
<p>My Process is something like this</p>
<ol>
<li>User fill up the form</li>
<li>They click button and it goes to paypal</li>
<li>They paid, IPN send me back the information and that ipn.php added variables that passed to the database.</li>
</ol>
<p>My custom variables are</p>
<ol>
<li>total lines (whenever they write, i count the lines)</li>
<li>message (their message that they wrote)</li>
<li>advertisement id </li>
</ol>
<p>But for now, I can only pass one variable like this</p>
<p><strong>form.php</strong></p>
<pre><code><input name="custom" type="hidden" id="custom" value="{$line_count}">
$_SESSION['line_count'] = $_POST['lines_txt'];
</code></pre>
<p><strong>ipn.php</strong></p>
<pre><code> $sql="INSERT INTO `form` (
`totalline` ,
)
VALUES (
'" .$_POST['custom']. "'
);";
</code></pre>
http://stackoverflow.com/questions/1837869/how-to-make-a-subdomain-files-on-it-acessible-to-people-with-special-privilege0How to make a subdomain + files on it, acessible to people with special privileges?Yegor2009-12-03T05:37:01Z2009-12-03T09:04:54Z
<p>Im adding a premium section to my site which already has free registration. People who will pay a monthly fee will have access to content (html, images and media files) that will be hosted on a subdomain lets say..... content1.domain.com</p>
<p>How would I make it so files that are delivered via that subdomain, cannot be hotlinked or copied, unless the user is logged into the main site, and has a paid account ($premium = 1 site-wide variable defines that).</p>
<p>Im using php and mysql for the site, and lighttpd web server. </p>
http://stackoverflow.com/questions/1486639/jquery-post-run-php-file-hide-the-form-give-message2Jquery Post + run php file > hide the form > give message...artmania2009-09-28T11:45:57Z2009-12-03T08:54:50Z
<p>Hi friends, </p>
<p>here is my code about jquery post. I can't make it work somehow. I spent hours :( what I miss here?! when I run the code, It loads same page :(</p>
<blockquote>
<p>I want it to run the php code under
query.php and hide the contact form
and give "thanks!" message at send
submit button click. (with no page
loading)</p>
</blockquote>
<p>appreciate helps!</p>
<p><hr /></p>
<p><strong>PHP Form</strong></p>
<pre><code><form id="commentForm" name="contact" method="post" action="">
<ul id="contact-form">
<li><label>Full Name: *</label><input type="text" name="full_name" class="txt_input required" /></li>
<li><input type="submit" value="Send" id="btnsend" name="btnsend" class="btn_submit" /></li>
</ul>
</form>
</code></pre>
<p><hr /></p>
<p><strong>SCRIPT</strong></p>
<pre><code>$(function() {
$("#btnsend").click(function() {
var dataString = 'fullname='+ escape(full_name);
$.ajax({
type: "POST",
url: "query.php?act=contact",
data: dataString,
success: function() {
$('#contact-form').hide();
$('#contact-form').html("<p>thanks!</p>")
.fadeIn(1500, function() {$('#contact-form').append("");});
}
});
return false;
});
});
</code></pre>
http://stackoverflow.com/questions/1838475/php-associative-array-strucuture-1PHP Associative Array StrucutureNewb2009-12-03T08:27:57Z2009-12-03T08:47:24Z
<p>Is there any thing wrong with this array?</p>
<pre><code>$selects = array(
"getmoney1" => $money["Dimes"],
"getmoney2" => $money["Nickels"],
"getmoney3" => $money["Quarters"]
);
</code></pre>
<p>I am learning, and I want to know more, and how to do it right.</p>
http://stackoverflow.com/questions/1838553/select-in-sqlite-doesnt-return-everything-in-the-table0SELECT * in SQLite doesn't return everything in the tablemathee2009-12-03T08:44:33Z2009-12-03T08:46:08Z
<p>I'm using PHP to fetch data from a database. </p>
<p>Here is the code:</p>
<pre><code><?php
$db = new SQLiteDatabase("testDB.db");
$query = $db->query("SELECT * FROM blog ORDER BY blogdate DESC");
while($entry = $query->fetch(SQLITE_ASSOC)) { //only one blog entry per day
echo "<a href=\"display.php?date=".$entry['blogdate']."\">".$entry['blogdate']."</a><br>";
}
?>
</code></pre>
<p>But for some reason it doesn't return an entry that I am certain is in the database. Is SQLite caching the results of a SELECT *? In any case, how do I fix this?</p>
http://stackoverflow.com/questions/1837432/how-to-generate-random-password-with-php0How to generate random password with PHP?unknown (google)2009-12-03T03:24:22Z2009-12-03T08:42:40Z
<p>Or is there a software to auto generate random passwords?</p>
http://stackoverflow.com/questions/1838461/advice-on-framework-design0Advice on framework designMark Tyler2009-12-03T08:25:12Z2009-12-03T08:41:38Z
<p>Hello, i'm currently constructing some kind of mini-framework for a project, and come up with this solution. I have tried many of them, but this seems to me very convinient (code is shortened for simplicity):</p>
<pre><code># Basically it's just a Registry pattern
class Repository {
private static $objects = array();
public function loadObject($alias, $object) {
self :: $objects[$alias] = $object;
return true;
}
public function __get($name) {
if ($this->objectExists($name)) {
return self::$objects[$name];
} else {
return false;
}
}
}
class Database extends Repository {
/* database class */
}
class Session extends Repository {
public function some_func($key, $value) {
/* i can access database object using $this in any class that extends Repository */
$this -> database -> exec (/* sql */);
}
}
/* =================== */
# Load core objects
$R = new Repository :: getInstance();
$R -> loadObject ('config', new Config());
$R -> loadObject ('database', new Database());
$R -> loadObject ('session', new Session());
/* =================== */
</code></pre>
<p>Can you see any problems or drawbacks with this approach? For me i see maybe i little more memory consumption, because each next class holds more and more objects from Repository.
Before i had a design where each class was independent, but anyway all of them require database, session, config etc, no i had to declare them in any class.
Just wanted to note that i'm planning this design only for core objects, not for specific classes.</p>
http://stackoverflow.com/questions/1833518/remove-empty-subfolders-with-php0Remove empty subfolders with PHPDmitry Letano2009-12-02T15:12:05Z2009-12-03T08:34:20Z
<p>I am working on a PHP function that will recursively remove all sub-folders that contain no files starting from a given absolute path.</p>
<p>Here is the code developed so far:</p>
<pre><code>function RemoveEmptySubFolders($starting_from_path) {
// Returns true if the folder contains no files
function IsEmptyFolder($folder) {
return (count(array_diff(glob($folder.DIRECTORY_SEPARATOR."*"), Array(".", ".."))) == 0);
}
// Cycles thorugh the subfolders of $from_path and
// returns true if at least one empty folder has been removed
function DoRemoveEmptyFolders($from_path) {
if(IsEmptyFolder($from_path)) {
rmdir($from_path);
return true;
}
else {
$Dirs = glob($from_path.DIRECTORY_SEPARATOR."*", GLOB_ONLYDIR);
$ret = false;
foreach($Dirs as $path) {
$res = DoRemoveEmptyFolders($path);
$ret = $ret ? $ret : $res;
}
return $ret;
}
}
while (DoRemoveEmptyFolders($starting_from_path)) {}
}
</code></pre>
<p>As per my tests this function works, though I would be very delighted to see any ideas for better performing code.</p>
http://stackoverflow.com/questions/1838253/please-suggest-a-good-book-on-drupal0Please suggest a good book on DrupalCrimson2009-12-03T07:26:32Z2009-12-03T08:21:28Z
<p>Can somebody please suggest a comprehensive book on Drupal? It would be great if the book is available online (and free :) )</p>
http://stackoverflow.com/questions/1838350/php-string-operation0php string operation Nisanth2009-12-03T07:59:04Z2009-12-03T08:04:39Z
<p>i have the following code in html </p>
<pre><code><? foreach($tst as $test) : ?>
<?=$test->id?>,
<? endforeach ?>
</code></pre>
<p>and that will result
as test1,test2,test3, </p>
<p>how avoid that last comma in simple method . I cant use complicated code in html like</p>
<pre><code><? $i = 0 ;?>
<? foreach($tst as $test) : ?>
<?=$test->id?>,
<? endforeach ?>
<? $i++ ;?>
<? if($i != count($tst)) :?>
,
<?endif;?>
<? endforeach;?>
</code></pre>
<p>Please Help :)</p>
http://stackoverflow.com/questions/805957/fastcgi-c-vs-a-script-language-php-python-perl7FastCGI C++ vs. A Script Language (PHP/Python/Perl)The Unknown2009-04-30T08:43:03Z2009-12-03T08:02:28Z
<p>What are the ups and downs of using FastCGI C++ vs. PHP/Python/Perl to do the same job. </p>
<p>Any performance or design pitfalls or using one over the other? Even your opinions are welcome. (Tell me why one or the other rocks, or one or the other sucks). </p>
http://stackoverflow.com/questions/206059/php-validation-regex-for-url4PHP validation/regex for URLAndreLiem2008-10-15T19:24:51Z2009-12-03T07:55:03Z
<p>I've been looking for a simple regex for URL's, does anybody have one handy that works well? I didn't find one with the zend framework validation classes and have seen several implementations.</p>
<p>Thanks </p>
http://stackoverflow.com/questions/1837934/login-logout-and-duration-time-in-php-and-mysql0Login, logout and duration time in php and mysql?mysqllearner2009-12-03T05:57:38Z2009-12-03T07:51:47Z
<p>I would like to store the login, logout and duration time in database. </p>
<ul>
<li>The login time is created when the user is authenticated(successfully logged in) </li>
<li>The logout time is created when the user clicks the logout button</li>
<li>The duration is logout - login time. (logout minus login)</li>
</ul>
<p>But the problem is, what if the user didnt click the logout button. Here are the situations:</p>
<ul>
<li>Internet loss</li>
<li>Close the browser/tab. (I need this must use javascript, but i donnu how to do it, any idea?)</li>
</ul>
<p>EDIT:</p>
<p>I forgot to add something to the question, the program is a full flash program, there is no navigation to other page. Only 1 page</p>
http://stackoverflow.com/questions/1837888/getting-objective-c-objects-in-php0Getting Objective-C Objects in PHPBiranchi2009-12-03T05:43:25Z2009-12-03T07:51:31Z
<p>Hi all,</p>
<p>I am sending an NSData Object to the server script running PHP.Is it possible to collect that object in PHP ?
Is it possible to get NSArray,NSString, NSData or any Custom Objects (Subclass of NSObject) in PHP ?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1838192/submit-value-with-javascript0Submit Value With JavascriptLea2009-12-03T07:07:27Z2009-12-03T07:47:56Z
<p>Hi All,</p>
<p>Im a little stuck with the following function. Please note, Im a total noob with javascript/ajax, so please bare with me:</p>
<pre><code><script type="text/javascript">
function removeElement($parentDiv, $childDiv){
if (document.getElementById($childDiv)) {
var child = document.getElementById($childDiv);
var parent = document.getElementById($parentDiv);
parent.removeChild($child);
}
}
</script>
<a href=\"javascript:;\" onClick=\"removeElement('$parent','$child');\">x</a>
</code></pre>
<p>This function deletes a child element, and its content, which works great client-side! But I am wanting to pass a value to the server, in the same instance, so the content of the element can be deleted from the mysql database too. I have no idea how to do this, so any suggestions will be very appreciated!</p>
<p>Notes: $child, and $parent are strings generated within the php file, that I use to give each element a unique ID.</p>