$var en tekst in een database veld
Mijn probleem zit denk ik hierin: '"Creditering factuur .$factuurid+32456. - reden:.$reden"'
Code (php)
1
2
3
4
2
3
4
<?
$SQL="insert into factuurdetails (factuurid, productnaam, productid, productprijs, productaantal, productserienr, productean)";
$SQL=$SQL."values ('".$nwfactuurid."','"Creditering factuur .$factuurid+32456. - reden:.$reden"',99999,'0',0,'','CREDIT')";
?>
$SQL="insert into factuurdetails (factuurid, productnaam, productid, productprijs, productaantal, productserienr, productean)";
$SQL=$SQL."values ('".$nwfactuurid."','"Creditering factuur .$factuurid+32456. - reden:.$reden"',99999,'0',0,'','CREDIT')";
?>
wat ik wil doen is tekst + ($var+32456) + tekst + $var2 in een veld in nl. productnaam invoegen.
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
$SQL = "INSERT INTO factuurdetails
(
factuurid,
productnaam,
productid,
productprijs,
productaantal,
productserienr,
productean
)
VALUES
(
'" . $nwfactuurid . "',
'Creditering factuur '" . $factuurid+32456 . " - reden: " . $reden . "',
99999,
0,
0,
'',
'CREDIT'
)";
?>
$SQL = "INSERT INTO factuurdetails
(
factuurid,
productnaam,
productid,
productprijs,
productaantal,
productserienr,
productean
)
VALUES
(
'" . $nwfactuurid . "',
'Creditering factuur '" . $factuurid+32456 . " - reden: " . $reden . "',
99999,
0,
0,
'',
'CREDIT'
)";
?>
Gewijzigd op 01/01/1970 01:00:00 door - SanThe -
'Creditering factuur ".$factuurid." - reden:".$reden."'
de enigste is als ik die +32456 bij voeg dan krijg ik weer die fout.
dus zo:
Code (php)
1
2
3
4
2
3
4
<?
$SQL="insert into factuurdetails (factuurid, productnaam, productid, productprijs, productaantal, productserienr, productean)";
$SQL=$SQL."values ('".$nwfactuurid."','Creditering factuur ".$factuurid.+32456" - reden:".$reden."',99999,'0',0,'','CREDIT')";
?>
$SQL="insert into factuurdetails (factuurid, productnaam, productid, productprijs, productaantal, productserienr, productean)";
$SQL=$SQL."values ('".$nwfactuurid."','Creditering factuur ".$factuurid.+32456" - reden:".$reden."',99999,'0',0,'','CREDIT')";
?>
Gewijzigd op 01/01/1970 01:00:00 door Dennis Ham
Code (php)
1
2
3
4
2
3
4
<?php
$SQL="insert into factuurdetails (factuurid, productnaam, productid, productprijs, productaantal, productserienr, productean)";
$SQL=$SQL."values ('".$nwfactuurid."','Creditering factuur ". ($factuurid+ 32456) . " - reden:".$reden."',99999,'0',0,'','CREDIT')";
?>
$SQL="insert into factuurdetails (factuurid, productnaam, productid, productprijs, productaantal, productserienr, productean)";
$SQL=$SQL."values ('".$nwfactuurid."','Creditering factuur ". ($factuurid+ 32456) . " - reden:".$reden."',99999,'0',0,'','CREDIT')";
?>
Kijk goed naar de punten én haakjes!
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
$SQL = "INSERT INTO factuurdetails
(
factuurid,
productnaam,
productid,
productprijs,
productaantal,
productserienr,
productean
)
VALUES
(
'" . $nwfactuurid . "',
'Creditering factuur " . ($factuurid + 32456) . " - reden: " . $reden . "',
99999,
0,
0,
'',
'CREDIT'
)";
?>
$SQL = "INSERT INTO factuurdetails
(
factuurid,
productnaam,
productid,
productprijs,
productaantal,
productserienr,
productean
)
VALUES
(
'" . $nwfactuurid . "',
'Creditering factuur " . ($factuurid + 32456) . " - reden: " . $reden . "',
99999,
0,
0,
'',
'CREDIT'
)";
?>
Een hoofdpijn minder!