Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
~15.3K People Reached
Favorite Tags
Member Avatar for thijscream

can someone explain to me how to put the current time into a tekstbox... i'm totaly new with this language and need to finish a program before school starts again. it should be like this: if i push button "BtnStart" then current time should be inputted in "textbox1" if i …

Member Avatar for HaxNain
0
7K
Member Avatar for thijscream

what am i doing wrong here? <?php include 'connect.php'; $query = 'SELECT productionorder.Finished FROM productionorder WHERE productionorder.ProductionOrderId = '.$id; $result = mysql_query($query) or die ('Error : ' . mysql_error()); while($data = mysql_fetch_array($result)){ $status = $data['Finished']; } if($status == 1){ header('location: index.php?user='.$user.''); } else{} ?> the query returns 1 and is …

Member Avatar for chemwile
0
197
Member Avatar for thijscream

hi, i just figured out how to write to a csv file form a textbox, i have the following code: [code] private void BtnOpslaan_Click(object sender, EventArgs e) { string[] lines = { textBox1.Text, textBox2.Text, textBox3.Text, textBox4.Text}; System.IO.File.WriteAllLines(@"C:\output.csv", lines); } [/code] but i was wondering how i can write to the …

Member Avatar for GuggiTanvi
0
207
Member Avatar for thijscream

Hi, i'm having the following problem. i have a list of products and each product has different items attached to them for example(it's all about wines) [CODE]id prodid text bedrag 35 1 1 fles kist Prosecco Tallero 14,95 36 1 2 fles kist Prosecco Tallero 26,95 1 10 1x Fles …

Member Avatar for smantscheff
0
195
Member Avatar for thijscream

hi i have 2 timers... and i want them to count just 1,2,3,4.... etc now i have figured out how it works with date and time but not with ticks... do you maby know a short way to do this? Thijscream

Member Avatar for Alpha-Bit
0
72
Member Avatar for thijscream

here is my code i have currently it displays some items after i searched for them in the database, and i'm only showing 10 per page. when i go to the next page i get the following error [QUOTE]Notice: Undefined variable: countz in C:\xampp\htdocs\wijnkado\advsearchresult.php on line 363[/QUOTE] can anyone explain …

Member Avatar for thijscream
0
167
Member Avatar for thijscream

hi, i'm having the following problem, normaly i work with html css and php but for this to work i need to make a litle javascript function and i'm still kinda new to it. so here is my problem. i'm making a search field where someone has to select some …

Member Avatar for Graphix
0
114
Member Avatar for thijscream

hey people, i have the following problem, i'm setting up a webshop with over 2k items and every 6months the prices are changing(wines) so i was wondering how to import an xml file into a mysql database without having to go in phpmyadmin. this because i don't want the people …

Member Avatar for jonnysmiths
0
639
Member Avatar for thijscream

hey, i'm trying to make a pdf, but i get the following error: 1temp/KW1.pdfError!! as you can see in the code i echo the $factuurnummer, that's the 1 in the error, then i echo the patth it should go to what is temp/wk1.pdf and then i echo the error. does …

Member Avatar for squinx22
0
150
Member Avatar for duliduli556

Hi All, How do you use div class' in php such that you can attach html generated by php into that div class. Example <html> <head> </head> <body> <div class="border"> </div> <?php echo "This needs to go into the class border" ?> </body> </html>

Member Avatar for diafol
0
110
Member Avatar for thijscream

[B]SOLVED ALREADY!!![/B] i'm getting the following error: UPDATE orders SET naamwijn = Josep Masasch Blanc de Blancs Brut Cava WHERE ordernr = 22 AND productnr = 16 LIMIT 1You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax …

Member Avatar for thijscream
0
79
Member Avatar for thijscream

hey ppl, you helped me out allot of times, so i come back to you once again, i just transfered my website from a local pc(for testing) to a webserver @ my hosting. now some parts arent working correctly. [B]some extra info about the page:[/B] What kind of web page …

Member Avatar for thijscream
0
174
Member Avatar for thijscream

i just made a website on a local webserver(xampp) now i'm uploading it to my webspace @ my hosting and i get the following error: Error : Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause what am i doing wrong? …

Member Avatar for Wraithmanilian
0
74
Member Avatar for thijscream

[CODE]$total = $total + $lineprice; $total = number_format($total,2);[/CODE] this is the code i use for getting a decimal, but when the $total is over 1000 it's shown as 1,000 and the total becomes 1,00 any solution for this? here is an example might make it more clear: [URL="http://img690.imageshack.us/img690/8484/voorbeelde.jpg"]http://img690.imageshack.us/img690/8484/voorbeelde.jpg[/URL]

Member Avatar for diafol
0
62
Member Avatar for thijscream

[CODE]<a href="javascript: void(0)" onclick="window.open('images/<?php echo $afbeelding;?>', '<?php echo $afbeelding; ?>', 'width=119, height=400'); return false;"><img id="wijnimgsmall" src="images/<?php echo $afbeelding;?>" height="65%" border="0px"></a>[/CODE] this is the image i'm currently using. but in IE the image isn't showing 65%. is there any way to fix this? here is an example in IE(in chrome it …

Member Avatar for Rajib Ganguly
0
53
Member Avatar for icehiro

I want to fetch some data from my database which something weird came out. [CODE]<?php include("conmysql.php"); $selectdb = @mysql_select_db("vote"); if (!$selectdb) die("Connect database fail!"); //find number of people supporting $sql = 'SELECT COUNT(support) FROM address WHERE support=1'; $result = mysql_query($sql); if (!result) { die('Invalid query: ' . mysql_error()); } echo …

Member Avatar for icehiro
0
79
Member Avatar for thijscream

hey, i have the following webpage: [URL="http://www.thijscream.nl/wijnkado/mouserend.php?id=0&sid=0"]http://www.thijscream.nl/wijnkado/mouserend.php?id=0&sid=0[/URL] there everything if fine, the footer is on the bottom of the page. but now i have a page with some artikels on it and then it's still on the same place instead of lowering to the bottom(as shown on the link below) …

Member Avatar for gunnarflax
0
98
Member Avatar for thijscream

when i try to update my table i get the following error: Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Beste witte wijnmaker van de wereld' door het toonaangevende Engelse Wine …

Member Avatar for happytogether
0
107
Member Avatar for thijscream

i'm having 2 select boxes, if i change the first one i would like a 2nd select box to change the content, everything is comming from a database. not xml because i want everything to be stored in a database for. is this possible with an onchange command or something? …

Member Avatar for thijscream
0
113
Member Avatar for thijscream

i made a dropdown menu on top of my page, i thaught everything went well. you can see the example @ [URL="http://www.thijscream.nl/wijnkado"]http://www.thijscream.nl/wijnkado[/URL] the only problem is that the page is kinda wide, so the menu isn't centered. is there a solution for this? this is my menu: [CODE]<div id="menu"> <ul …

Member Avatar for thijscream
-1
146
Member Avatar for thijscream

hi, i'm strugling with some difficulties. i can't seem to get something to work. [CODE]<table id="wijn"> <tr> <?php $query = "SELECT id, domein, naam, streek, substreek, jaar, type, smaak, formaat, prijsnormaal, prijs6, prijs12, prijs24, afbeelding from wijnen WHERE kleur = 'rood'"; $result = mysql_query($query) or die('Error : ' . mysql_error()); …

Member Avatar for thijscream
0
124
Member Avatar for FBG

Hi, On my website I have a lot of folders with lists of article links. I want to display the number of links in these lists on the folders people select, so they know how much articles are inside a folder and where to search. I've looked for help creating …

Member Avatar for FBG
0
108
Member Avatar for coolest_987

Hi Everyone How can i upload pdf file in php as i have noticed that tmp file of pdf file is not created . Thanks in Advance

Member Avatar for coolest_987
0
223
Member Avatar for thijscream

heya, your last answers realy helped me out, but i'm still stuck with another question. what i want to do is the following. i have a database with this in it:" [CODE]id land streek rood wit rose 1 Frankrijk Bordeaux 1 1 0 2 Frankrijk Bourgogne 1 1 0 3 …

Member Avatar for thijscream
0
142
Member Avatar for thijscream

hey, it has been a couple of months since i have been here, and let's get strait to the point. someone told me you can change the page title of a dynamic link with the .htaccess file. for example i have a page. [url]http://www.mywebsite.com/page.php?id=1[/url] i include this page for different …

Member Avatar for smantscheff
0
2K
Member Avatar for thijscream

since my original topic got spammed by someone who doesn't know how forums work here is a new one again: [code] string[] lines = { textBox1.Text, textBox2.Text, textBox3.Text, textBox4.Text, textBox6.Text, textBox7.Text, textBox8.Text, textBox9.Text, textBox10.Text}; [/code] i have this line to write to csv... but how can i add an item …

Member Avatar for weigp
0
80
Member Avatar for thijscream

hi, i made a form1(FrmMain) and when i press on BtnAdvocaat form2(FrmAdvocaat) is vissable and BtnAdvocaat is disabled. now i want to make it like this: when the form2(FrmAdvocaat) is closed by BtnClose i want BtnOpen to be enabled. the code to open so far is: [code] private void button1_Click(object …

Member Avatar for thijscream
0
2K