Posts by Raizant • 2,316 points
61 posts
-
-1
votes3
answers5861
viewsQ: How to style an echo with CSS?
For example: I want to display a formatted database number: echo number_format($saldo, 2, ',', '.'); There echo writes: 8,944,664.00 I want to know how I use css in this condition... to show in the…
-
1
votes2
answers162
viewsQ: How do I get the size of the user resized window?
I’m trying to use a script to make an image disappear if the size of the resized window is less than 400px wide, but it’s not working... Script: <script type="text/javascript"> $(function(){…
-
1
votes1
answer167
viewsA: Error loading source: OTS Parsing error: Cmap: Failed to parse format 4
I actually solved the error by adding the font format I wanted to use, (true type). Thus was the CSS: font-family: 'prompt'; src: url('fonts/prompt.ttf') format('truetype'); I tested with open type…
-
1
votes1
answer167
viewsQ: Error loading source: OTS Parsing error: Cmap: Failed to parse format 4
I’m having trouble for the browser to use a custom font! In the css folder I have the fonts folder, and inside the fonts folder is the file prompt.ttf but when I upload the file to the server, I do…
-
1
votes1
answer1340
viewsQ: How to create a folder for each user in PHP?
I would like an example of how to create a folder to store each user’s data in php, for example www.facebook.com/nomedeusuario I imagine that in the sequence an index is saved inside this folder and…
-
1
votes2
answers1136
views -
0
votes2
answers1151
viewsQ: Vulnerability in my system "forgot password"
I created a system in case the user forgets the password, but I have doubts about one thing... HTML+PHP System <html> <head> <link rel="icon" href="favicon-16.png" sizes="16x16">…
-
4
votes2
answers78
viewsQ: Hide controls for flash (swf)?
How is the correct way to hide the controls in the SWF? For when the user right-click does not appear the options... These are the controls: This image here is what I want it to be about: I don’t…
-
0
votes1
answer103
viewsQ: How to confirm if user exists with those "green ticks"
They say it’s with javascript, but I searched the net and found nothing related... Example of how I want it to stay: Currently I do with Alerts, but I would like validation to leave a green light as…
-
2
votes2
answers1018
viewsQ: Input type image does not send the form?
I’m having a problem to give Ubmit with input type image, it simply is not recognized as Submit and does not send the data to be processed by POST. Below are the forms that did not work. Trying to…
-
0
votes2
answers484
viewsQ: Why isn’t my footer staying on the full screen?
I’m trying to make my footer pick up 100% of the screen, but depending on the resolution is missing a part, as in image 2, the CSS code I’m using in the footer is this: footer { width: 100%; margin:…