English 中文(简体)
利用PHP SessionS
原标题:Remembering text resizing across different pages on a web site using PHP SESSIONS
  • 时间:2010-07-27 15:22:18
  •  标签:
  • php
  • session

因此,在审查了如何改变案文规模和如何利用PHP来创建我自己的主人之后,我很想知道,如何在我的网站上用<代码>在多个不同网页上记住我的文本尺寸。 缩略语

下面是PHP文本尺寸代码。

$size = 100;

if(isset($_GET[ i ]) && is_numeric($_GET[ i ])) {
    $s = $_GET[ i ];
}

if($s == TRUE){
    $size = ($s * 1.2);
}


if(isset($_GET[ m ]) && is_numeric($_GET[ m ])) {
    $m = $_GET[ m ];
}

if($m == TRUE){
    $size = ($m * 0.8);
}


if(isset($_GET[ n ]) && is_numeric($_GET[ n ])) {
    $n = $_GET[ n ];
}

if($n == TRUE){
    $size = 100;
}

《社会保障法》。

#content {
  font-size : <?php echo $size; ?>%;
}

这里是超文本。

<a href="index.php?i=<?php echo $size; ?>" title=""> Increase</a><br />
<a href="index.php?m=<?php echo $size; ?>" title=""> Decrease</a><br />
<a href="index.php?n=<?php echo $size; ?>" title=""> Normal</a><br />
问题回答

首先,在公布任何内容之前,确保你在所有网页上填写<代码>session_start(<>/code>。

从这里看,你能够确定会议变量(通常会节省成会议 co)。

因此,当用户点击链接时,PHP应当设定如下内容:_SESSION[ i]=_GET[ i]美元;,然后当您的来访者回到一页时,请看看_SESSION[ i]/code>_f?

http://www.tizag.com/phpT/phpsessions.php“rel=“nofollow noreferer” 网址——为什么使用?

仅t no t use $_GET factors, use $_SESSIONvars. 确保列入相关的<代码>-session_start()职能和所有职能。

如前所述,请您查阅<代码>_SIONESS,而不是_GET。 每一页一开始,请打电话到session_start()。 您还不妨以超文本形式审视当地网络储存(浏览器)。 查阅。 执行工作非常容易。 当然,并非所有浏览器都安装了网络储存,但这种储存非常普遍(如果你想要支持并设计的话,就会排在一边; IE8)。





相关问题
why the session in iis automatically log out?

I used iis6, and when i called a function Directory.delete(), the all the session relate this website will be logged out. and i debugged the website, i found no exception. any one have ideas on this ? ...

Check session from a view in CodeIgniter

What is the best way to check session from a view in CodeIgniter, it shows no way in their user guide, otherwise I will have to make two views on everything, which is kinda weird...still a newbie to ...

Can I get the size of a Session object in bytes in c#?

Is it possible to get the size(in bytes) of a Session object after storing something such as a datatable inside it? I want to get the size of a particular Session object, such as Session["table1"], ...

提供严格分类的出席会议物体

提供严格分类的与会机会的最佳方式是什么? 我正计划转而选择矩阵,这正在促使汇编者抱怨我的幻觉方案拟订方法......

PHP Session is not destroying after user logout

I m trying to create an authentication mechanism for my PHP Application and I m having difficulty destroying the session. I ve tried unsetting the authentication token which was previously set within ...

热门标签