我試圖找到一種方法,功能自動創建僅通過訪問一個網址爲DB-條目。 網址應該在每一個新的一天訪問一次。創建自動創建一個新的數據庫條目
這是我的職責,我想現在:
function createMedOne() {
$medid = "1";
$mname = "Name1";
$menh = "Amount 1";
$mtime = "17:23";
$mdte = date("Y-m-d");
$mhtml = '<tr class="" id="med1">
<td><p style="font-weight: bold;">Name1</p></td>
<td>Amount 1</td>
<td>Kl: 17:23</td>
<td><button type="button" class="btn btn-warning btn-sm" style="float: right;">Sign</button></td>
</tr>';
$reg_med->addmed($medid,$mname,$menh,$mtime,$mdte,$mhtml);
}
createMedOne();
其它功能:
function addmed($medid,$mname,$menh,$mtime,$mdte,$mhtml)
{
try
{
$stmt = $this->conn->prepare("INSERT INTO tbl_med(medID,medName,medEnh,medTime,medDate,medHtml)
VALUES(:med_Id, :med_name, :med_enh, :med_time, :med_date, :med_html)");
$stmt->bindparam(":med_Id",$medid); //id of the med
$stmt->bindparam(":med_name",$mname); //name of the med
$stmt->bindparam(":med_enh",$menh); //the amount
$stmt->bindparam(":med_time",$mtime); //When to give med
$stmt->bindparam(":med_date",$mdte); //date
$stmt->bindparam(":med_html",$mhtml); //the html-code to generate content
$stmt->execute();
return $stmt;
}
catch(PDOException $ex)
{
echo $ex->getMessage();
}
}
當我訪問的URL我收到以下錯誤:
Fatal error: Call to a member function addmed() on null in test2.php on line 20
它指的是函數createMedOne,但我找不到我錯過了某些東西,但顯然我有。
我被自己處理過,可能是我可以幫你嗎? –
它是一個[可變範圍(http://stackoverflow.com/q/16959576/1415724) –
[PHP呼叫類方法/函數(的可能的複製http://stackoverflow.com/questions/15499513/php-call -class-method-function) – miken32