-
Content Count
85 -
Joined
-
Last visited
Community Reputation
3 NeutralAbout Sunamena
-
Rank
Newbie
Recent Profile Visitors
5,400 profile views
-
So you see price, meaning it probably did not read the ID. Try the following. Reload the page by using control+F5. This reloads your stored Javascript code. Then press F12 (Google chrome) and look for errors in the Console. Let us know how this worked.
-
You can indeed use a flexbox In very short: table { width: 100%; } table tr { display: flex; } table tr td { flex 1; } In more detail: https://css-tricks.com/snippets/css/a-guide-to-flexbox/
-
I have a very large background image. It should not fill the screen, usually the image is larger than the screen. However, the image is displayed from the top left, and the right and bottom parts are left out. However, it should be the top right that is left out. How can I achieve this?
-
Your textarea and email dont have a name (HTML). Could that cause a problem?
-
I am currently on my mobile device so i can not check your code but i always jump to the part under guided. Are you sure the ID is at the correct place? And did you try to validate your code? Very handy to see you forgot something. https://validator.w3.org
-
Image 2 is the closest to the last one (the example i presume?). The left div does not need any margin. Try adding: margin: 0; And the right div would need: vertical-align: top;
-
I am not a big fan of Bootstrap, but i think this is what you are looking for: Example: https://www.w3schools.com/bootstrap/bootstrap_affix.asp Note that this is achieved by using JavaScript. You actually change the class after scrolling down.
-
You can try to assign a clear propperty. Like in this example: https://www.w3schools.com/css/css_float.asp I think the "try it" tackles a problem like the one you are having right now. If it still doesn't work, be sure to reply
-
Thankyou very much! =D
-
I failed to find an example of something specific i am looking for. This is what i want: <img src="a.jpg" id="1"> <img src="a.jpg" id="2"> <img src="a.jpg" id="3"> <img src="b.jpg" id="dragable-1"> <img src="b.jpg" id="dragable-2"> When a draggable image (as seen in the ID), gets dragged onto another image i want this to happen: <a href="mylink.php?draggable=IDDRAGGABLE1&to=IDOFTHEIMMAGEITGOTDROPPEDINTO"></a> Can i find any tutorial on this? Is this difficult? Thanks in advance =D
-
Thankyou very much for your reply! Well, I will stick with PDO then. I managed to find a solution to make it work with PDO (and I am happy with that ). I did get error messages, but not anymore. I think the problem was on my end (or i was not patient enough). At the top of my document, to keep it organised i check all my input from the post. For the password i hash with sha1. Should i adopt using password_hash instead?
-
Hello everyone I have a small problem with my code. I will show the most important parts of it and hope you guys can assist me This is my code: $sql = "SELECT * FROM brusers WHERE userName = '$userName' AND password = '$wachtwoord'"; // Vraag alle resultaten op $stmt = $con -> prepare($sql); $deelStap=mysqli_query($con,$sql); $result=mysqli_fetch_all($deelStap,MYSQLI
-
The new code should be MySqli $sql="SELECT * FROM nieuws ORDER BY nieuwsID desc"; $deelStap=mysqli_query($con,$sql); $result=mysqli_fetch_all($deelStap,MYSQLI_NUM); $numberInResult = count($result); But how to fetch one?
-
Hey all, I have created a website on my local host. Now that i try to upload it, i get many errors. Such as this one: $result = $stmt -> fetchAll(PDO::FETCH_NUM); ERROR: Fatal error: Uncaught Error: Call to undefined method mysqli_stmt::fetchAll() in /customers/c/5/e/sunamena.be/httpd.www/eldiemus/nieuws.php:290 Stack trace: #0 {main} thrown in /customers/c/5/e/sunamena.be/httpd.www/eldiemus/nieuws.php on line 290 And will this still be valid? $stmt -> bindParam(':datum', $datum, PDO::PARAM_INT); I also had to change my connection method
-
Thanks. This problem has been solved =D