|
Where can I download the PHP windows base program ? Any web site provide the tutorial on this language especially for database programming purpose? I am new to PHP. |
|
|
|
|
|
|
|
发表于 23-6-2005 11:22 AM
|
显示全部楼层
|
|
|
|
|
|
|
发表于 23-6-2005 02:47 PM
|
显示全部楼层
download 了在zip file里还有install.txt教你install. |
|
|
|
|
|
|
|
发表于 23-6-2005 02:49 PM
|
显示全部楼层
|
|
|
|
|
|
|
发表于 23-6-2005 08:41 PM
|
显示全部楼层
|
|
|
|
|
|
|
发表于 24-6-2005 12:07 AM
|
显示全部楼层
|
|
|
|
|
|
|
发表于 24-6-2005 01:48 AM
|
显示全部楼层
|
|
|
|
|
|
|
发表于 27-6-2005 09:44 AM
|
显示全部楼层
// $text='01234567';
trim($text,"0"); // 1234567
请问这样的写法对吗? |
|
|
|
|
|
|
|
发表于 27-6-2005 10:23 AM
|
显示全部楼层
院长 于 27-6-2005 09:44 AM 说 :
// $text='01234567';
trim($text,"0"); // 1234567
请问这样的写法对吗?
请问你是要拿掉0吗?
是的话,
$text=' 01234567 ';
echo trim($text,'0'); // ' 1234567 '
normal的就是trim space
$text=' 01234567 ';
echo trim($text); // '01234567'
是不是你要的? |
|
|
|
|
|
|
|
发表于 27-6-2005 10:26 AM
|
显示全部楼层
院长 于 27-6-2005 09:44 AM 说 :
// $text='01234567';
trim($text,"0"); // 1234567
请问这样的写法对吗?
还有,
你是要return back回自己吗?是的话就蒋。
$text = '01234567';
$text = trim($text,"0"); // 1234567 |
|
|
|
|
|
|
|
发表于 27-6-2005 10:37 AM
|
显示全部楼层
-Devil- 于 27-6-2005 10:26 说 :
还有,
你是要return back回自己吗?是的话就蒋。
$text = '01234567';
$text = trim($text,"0"); // 1234567
我是要拿掉"0" |
|
|
|
|
|
|
|
发表于 27-6-2005 10:46 AM
|
显示全部楼层
院长 于 27-6-2005 10:37 AM 说 :
我是要拿掉"0"
你的问题解决了吗? |
|
|
|
|
|
|
|
发表于 27-6-2005 12:13 PM
|
显示全部楼层
-Devil- 于 27-6-2005 10:46 说 :
你的问题解决了吗?
嗯。。。
解决了,谢谢。 |
|
|
|
|
|
|
|
发表于 27-6-2005 09:55 PM
|
显示全部楼层
|
|
|
|
|
|
|
发表于 16-8-2005 01:38 AM
|
显示全部楼层
请问这个script 那里除了错误
<?
$event="intoTheBasket";
$inq_job="CompanyInquiry";
$inq_data="HomeCompany|tenfoon";
$_ary_inq_data = explode("|", $inq_data);
$mydomain = $_ary_inq_data[1].".website.com";
$inq_name = $inq_job."[".$_ary_inq_data[1]."]";
function _mysetCookie($name, $value)
{
global $mydomain;
global $_COOKIE;
// setcookie ( string name [, string value [, int expire [, string path [, string domain [, int secure]]]]])
// setcookie ("$name", "$value", time()+3600, "/", "$mydomain", 0);
setcookie ("$name", "$value");
if(isset($_COOKIE['$name'])) {
return true;
}
else {
return false;
}
}
function getExistCookie($name)
{
global $_COOKIE;
if(isset($_COOKIE['$name'])) {
return true;
}
}
function getCookie($name, $Total)
{
global $_COOKIE;
if(isset($_COOKIE['$name'])) {
foreach($_COOKIE['$name'] as $myname => $myvalue) {
$Total++;
}
}
return $Total;
}
function getSelectCount()
{
$TotalCount = 0;
$inquires = "";
$inquires = getCookie("ProductInquiry", $TotalCount);
$TotalCount += $inquires;
$inquires = getCookie("TradeInquiry", $TotalCount);
$TotalCount += $inquires;
$inquires = getCookie("CompanyInquiry", $TotalCount);
$TotalCount += $inquires;
return $TotalCount;
}
$checkCount = getSelectCount();
if($checkCount > 40)
{
echo '
<script>alert("Sorry! You cannot send more than 40 inquiries at once."); history.back();</script>
';
}
else
{
$inquiry = getExistCookie($inq_name);
if ($inquiry == 1)
{
echo '
<script>alert ("You have already selected this item."); history.back();</script>
';
}
else
{
$addBasket = _mysetCookie($inq_name, $_ary_inq_data[1]);
echo $addBasket;
echo $checkCount;
}
}
?> |
|
|
|
|
|
|
|
发表于 28-11-2005 02:18 PM
|
显示全部楼层
如何在send email 的同时, 加入一个search form
如何在send email 的同时, 加入一个search form |
|
|
|
|
|
|
|
发表于 13-12-2005 01:07 PM
|
显示全部楼层
php 能不能转换英文字母(大写成小写 / 小写成大写) 英文字母呢? |
|
|
|
|
|
|
|
发表于 13-12-2005 08:57 PM
|
显示全部楼层
原帖由 院长 于 13-12-2005 01:07 PM 发表
php 能不能转换英文字母(大写成小写 / 小写成大写) 英文字母呢?
strtoupper 和 strtolower |
|
|
|
|
|
|
|
发表于 14-12-2005 09:27 AM
|
显示全部楼层
原帖由 kfchai1982 于 13-12-2005 08:57 PM 发表
strtoupper 和 strtolower
谢谢。成功了 |
|
|
|
|
|
|
|
发表于 9-3-2006 10:36 AM
|
显示全部楼层
如何在window的界面里,使用setcookie
window 的界面里,我无法使用php setcookie 吗? |
|
|
|
|
|
|
| |
本周最热论坛帖子
|