So for example:
why does simply declaring the mysqli_query function in a variable make it work? Why does this function get parsed just for being in a variable? Also does this work on all functions? Thanks.<?php
$dbc = mysqli_connect('localhost', 'root', '', ''databasename')
or die("Can't connect");
$query = "INSERT INTO tablename (value, value2, value3)
VALUES ('value', 'valuee', 'valueee');";
$result = mysqli_query($dbc, $query)
or die("Cannot query database");
mysqli_close($dbc);
?>