相对较新的PHP,所以任何帮助都将受到赞赏。
我正在使用page-profile.php
来检索
“电话号码”
来自$_GET
的信息。我在author.php
$_GET
目前,我无法page-profile.php
来自author.php
的信息。如果我重新刷新网页(本地主机),它将不会显示信息。
以下是我<li>
<i class="fa fa-map-marker"></i>
<span class="text"><?php _e('Phone Number:',ET_DOMAIN);?></span>
<span class="text-right"><?php echo $_GET["phone_number"]; ?></span>
</li>
的代码,我遇到了麻烦:
<div class="clearfix"></div>
<div class="form-group">
<div class="form-group-control">
<div class="form-group-control">
<label><?php _e('Phone Number', ET_DOMAIN) ?></label>
<input type="text" class="form-control" id="phone_number" name="Phone_Number" value="<?php echo $user_data->location ?>" placeholder="<?php _e('Enter Phone Number. Important!', ET_DOMAIN) ?>">
</div>
</div>
</div>
</div>
这是来自page-profile.php的代码
{{1}}
最终输出应显示在此图像的“电话号码”区域中。文字与右边对齐。
希望有人可以提供帮助!
詹姆斯。
答案 0 :(得分:4)
您输入的当前name
属性为name="Phone_Number"
,因此,请将$_GET['phone_number']
更改为$_GET['Phone_Number']
。
答案 1 :(得分:0)
您无法直接从其他页面获取数据!
您必须将数据添加到您的网址:
http://example.com/?phon=xxxxx
基本上,你应该创建一个:
header ("location: author.php/?phon=xxxxx")
或者只是使用POST将数据发送到page-profile.php中的author.php页面!