How do I do this
<input type="hidden" name="csrftoken" value="{_CSRFTOKEN}">
with a php file that uses standard html in the form? this doesn't work
<input type="hidden" name="csrftoken" value="<?php echo $_CSRFTOKEN; ?>">
Im search some html for the £4.50 out of this...
<span id="fshippingCost" class="notranslate sh-cst "><span>£4.50</span>
using this code
foreach($html->find('span[id=fshippingCost]') as $shippingcost)
{
$arrayresults[] = $shippingcost->plaintext;
$shippingcoststr =...
I'm using the method below to copy an image from one directory to another on the fly, the thing is, when I use the move_uploaded_file method it doesn't see the image...
I have to click refresh on the server then the image appears in the FROM directory but the move method must not be able to see...
Does anyone know anything about simple dom parser? I'm look at a problem with the find functionforeach($html->find('span itemprop="name"') as $cat)
echo $cat->src;
even though there is only one instance I get more after it>? how do I get first instance
Hi
Hit a brick wall with this function, it does what I want but one line, I need it to read my lines of data, can anyone help please?
function mysql_insert_array($table, $column_list, $filename, $types)
{
$i=0;
$f = fopen($filename, "r");
while (($line = fgetcsv($f)) !== false)
{...
Is this fall through statement valid?
function switch_to_get_values($valuetype)
{
switch ($valuetype)
{
case "image":
case "time":
case "text":
case "digityorn":
case "digitnory":
case "yorn":
$value=true;
break;
case "int"...
Wher is the data delimited by the ; in this function please?
function csv_to_array()
{
$delimiter=';';
$filename='auctions.csv';
if(!file_exists($filename) || !is_readable($filename))
return FALSE;
$header = NULL;
$data = array();
if (($handle = fopen($filename, 'r'))...
How do I print this out please or how do I call it first column and second column which is the type
$types = array(
'user' => 'int',
'title' => 'text',
'subtitle' => 'text',
'starts' => 'time',
'description' => 'text',
'pict_url' => 'image',
'category' => 'int',
'secondcat' => 'int'...
Hi Guys,
Im not that bright with php all those hidden functions, I want to open a csv file, get the tope line which is the titles and the rest is data...
Hi have wampserver installed and says apache is fine on a test and php modules are loaded etc, iis is using port 80 so I'm using 8080 for apache but I just get the php code in the browser and nothing is interpreted, ive searched on here hi and low and cant find an answer so I have to post this...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.