ส่ง link ไปกับ include ใน php อย่างไร/ได้หรือไม่

กระทู้คำถาม
ผมส่งด้วยคำสั่ง

include "DetailRepair.php?hiddenShowID=".$row_RepairRS['id_r'];
และ
$sid=$row_RepairRS['id_r'];
include 'DetailRepair.php?hiddenShowID=$sid';

มันฟ้อง error
ผมมีความจำเป็นต้องเรียกไฟหน้า DetailRepair.php มาแสดงใน Div พร้อมส่งค่าดังกล่าวไปด้วย

ตาม เวป PHP

Example #3 include through HTTP

<?php

/* This example assumes that www.example.com is configured to parse .php
* files and not .txt files. Also, 'Works' here means that the variables
* $foo and $bar are available within the included file. */

// Won't work; file.txt wasn't handled by www.example.com as PHP
include 'http://www.example.com/file.txt?foo=1&bar=2';

// Won't work; looks for a file named 'file.php?foo=1&bar=2' on the
// local filesystem.
include 'file.php?foo=1&bar=2';

// Works.
include 'http://www.example.com/file.php?foo=1&bar=2';

$foo = 1;
$bar = 2;
include 'file.txt';  // Works.
include 'file.php';  // Works.

?>

ผมเลยลอง
$sid=$row_RepairRS['id_r'];
include 'http://192.168.3.1/repair/DetailRepair.php?hiddenShowID=$sid';
หรือ
include ("http://192.168.3.1/repair/DetailRepair.php?hiddenShowID=$sid'");

ทำตาม
// Works.
include 'http://www.example.com/file.php?foo=1&bar=2';

ก็ไม่สำเร็จ...
hiddenShowID=150 ซึ่งส่งค่าไปแล้ว
error ดังนี้
Warning: include() [function.include]: Failed opening 'http://192.168.3.1/repair/DetailRepair.php?hiddenShowID=150' for inclusion (include_path='.;D:\xampp\php\pear\')

รบกวนด้วยครับ
แก้ไขข้อความเมื่อ
แสดงความคิดเห็น
โปรดศึกษาและยอมรับนโยบายข้อมูลส่วนบุคคลก่อนเริ่มใช้งาน อ่านเพิ่มเติมได้ที่นี่