Posts by silvalexandre • 119 points
4 posts
-
-1
votes2
answers75
viewsA: Use Inner Join with <ul> and <li>
In my view your query is ok, the problem is in the relationship of the tables, since you used category name for such relation. Research and apply the concepts of Foreign key on its tables, which…
-
1
votes1
answer4362
viewsA: 1264 Out of range value adjusted for column with decimal field
The problem is in the data type. Try to change to decimal(3,2). According to the documentation, the first parameter is the maximum number of digits, while the second is the number on the right side…
-
8
votes6
answers20421
viewsA: How to get weather and weather information?
You get this information through meteorological services Apis, such as Yahoo! I created and tested an example of usage as shown below: <script> var callbackFunction = function(data) {…
-
0
votes1
answer207
viewsA: Insert with ajax and php
You need to include the classes in the file requested by ajax. Since ajax only requires that file, there is no way you can create the objects that are not being included in the php file.