1
vote
7answers
77 views
Introduction to GUI programming with c
Hello there,
I'm new GUI and programming as whole and so far I have a general understanding of c and have spent quite some time writing console applications.
I'm trying to learn GUI but have so far …
0
votes
6answers
45 views
Can I use php in javascript?
Begginer's question.
Can I use PHP in javascript?
For example in jquery,
...
...
triggers.eq(1).post('<?php admin/categories/delete/'. $list['id']; ?>);
1
vote
5answers
78 views
How to compute the output ?
How to compute the output for the recursive functions ? I know recursion invokes a stack, but am confusing while solving some aptitude question.
Given the following code snippet:
#include …
0
votes
1answer
25 views
How to escape a period for php and mysql question?
Okay here is what I'm, trying to do I want to escape the period so I can add a .8em font and a 2.5em font into my code for example instead of a plain number font. I tried escaping the period three …
0
votes
3answers
26 views
How to order data randomly
I have the following MySQL. I want to pull the data in random order.
Could anyonet teach me how to do it please.
$Q = $this->db->query('SELECT P.*, C.Name AS CatName
FROM products AS …
0
votes
2answers
18 views
PHP & MySQL - How to count the number of times data was entered for a specific user?
Let's say I want to display the tags related to users_question_id 1 and I want to count the number of times that tag was entered for that question by 1 each time it was entered in-order to display the …
3
votes
3answers
97 views
Usage of ‘short’ in C++
Why is it that for any numeric input we prefer an int rather than short, even if the input is of very few integers.
The size of short is 2 bytes on my x86 and 4 bytes for int, shouldn't it be better …
1
vote
7answers
70 views
Determining output (printing) of float with %f in C/C++
I have gone through earlier discussions on floating point numbers in SO but that didn't clarified my problem,I knew this floating point issues may be common in every forum but my question in not …
1
vote
2answers
24 views
Few questions from a Java programmer regarding porting preexisting database which is stored in .txt file to mySQL ?
I've been writing a Library management Java app lately, and, up until now, the main Library database is stored in a .txt file which was later converted to ArrayList in Java for creating and editing …
0
votes
1answer
27 views
Using SQLite from Objective-C
I am having problems writing statements, especially when updating.
I want to update a column with a parameter, but I don't know the special characters to use like @ or %d.
I tried to do:
const …
4
votes
3answers
45 views
Books and tutorials for building a web framework
Hi.
I'm building a sort of web framework I guess.. It started with a simple website I wrote in php. I decided not to use any framework out there, because I wanted to learn how to do things on my own …
1
vote
2answers
46 views
Isolating jQuery to only contained elements
I have been looking for awhile, and I am just too new with JQuery and javascript to figure out where I am going wrong. Any help will be greatly appreciated. I have the script below, which works great …
0
votes
4answers
111 views
Why do C enumeration constants need a name?
Why do C enumeration constants need a name? Because this:
#include <stdio.h>
enum {NO, YES};
int main(void)
{
printf("%d\n", YES);
}
works just the same as this:
#include …
1
vote
4answers
116 views
Numerical computation in Java.
Ok so I'm trying to use Apache Commons Math library to compute a double integral, but they are both from negative infinity (to around 1) and it's taking ages to compute. Are there any other ways of …
1
vote
2answers
28 views
How to display text bigger according to how many times entered into a MySQL database using PHP and MySQL?
Okay, I have this script that should display the tags that are entered more times bigger and tags that are entered less smaller for a certain question. But for some reason it displays the last tag …
