这个PHP文件正在运行,但现在我需要一个赞成一个理解的想法。 域A和域B位于不同的服务器中。 所以现在这个index.php在域A中。我希望以下代码为域B生成一个链接并注册一个域,以便它可以重定向。 有可能吗?
<?php
$new_link = "";
if(isset($_POST['submit']))
{
if(isset($_POST['cid'],$_POST['gid']))
{
$cid = $_POST['cid'];
$gid = $_POST['gid'];
$new_link = "www.something.com/".$cid.$gid;
// if your input is integer and you want to add them then use this
// $new_link = "www.something.com/".($cid+$gid);
}
}
?>
<form method="post" action="">
<h1 style="color:#0CF; font-family:Arial, Helvetica, sans-serif;">Enter ID 1:</h1>
<input type="text" value="" name ="cid" id="cid" />
<h1 style="color:#0CF; font-family:Arial, Helvetica, sans-serif;">Enter ID 2:</h1>
<input type="text" value="" name ="gid" id="gid"/>
<h1 style="color:#0CF; font-family:Arial, Helvetica, sans-serif;">Copy Your Link Here</h1>
<textarea style="width:500px; height:50px;"><?php echo $new_link;?></textarea><br /><br /><br />
<input type="submit" value="submit" name="submit" id="submit"/>
</form>