gpt4 book ai didi

php - 将php变量发送到另一个php页面

转载 作者:行者123 更新时间:2023-11-29 07:10:01 26 4
gpt4 key购买 nike

我需要一些编码方面的帮助。我有一个名为 index.php 的页面和一个 picture.php

索引.php

$pid = 0;

for($ctr = 1; $ctr <= 2; $ctr++)
{
echo '<tr>';
$pid++;

echo '<td>';
echo '<a id="various3" href="picture.php" title="try" idno="5"><img src="picture.php" width="150" height="210">';
//echo '<br>'.$pagenm;
echo '</td>';

echo '</td>';
echo '</tr>';
}

$pid++ 执行后,我想把它的值传给picture.php,用于检索查询。

图片.php

$host = 'localhost';
$user = 'root';
$pw = '';
$db = 'thepillar';

mysql_connect($host, $user, $pw);
mysql_select_db($db);
$sql = "select pics, ext from infopics where id='5'";
// mysql_real_escape_string($sql, mysql_connect);
$result = mysql_query($sql) or die('Bad query at 12!' . mysql_error());
while ( $row = mysql_fetch_array($result, MYSQL_ASSOC) ) {
$db_img = $row['pics'];
$type = $row['ext'];
}
$img = base64_decode($db_img); // print_r($db_img );
$img = imagecreatefromstring($img);
header("Content-Type: image/jpeg");
imagejpeg($img);
imagedestroy($img);

我只指定了 5 作为用于从数据库中检索图像的 ID。这是因为我不知道如何从 index.php 中获取 $pid 并将其分配给我可以在 SQL 查询中使用的变量。

任何帮助将不胜感激。提前致谢。

最佳答案

索引.php

for($ctr=1; $ctr<=2; $ctr++)
{
echo '<tr><td><a id="various3" href="picture.php?id=',
// I use $ctr insteaf of $pid because is the same... starts with 1
$ctr,'" title="try" idno="5"><img src="picture.php" width="150" height="210">',
'</td></td></tr>';
}

图片.php

<?php
...
$sql = sprintf("select pics, ext from infopics where id='%d'", $_GET['id']);
...
?>

关于php - 将php变量发送到另一个php页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5189445/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com