Tagged Questions

3
votes
3answers
90 views

Mixing different categories results, ordered by score in MySQL

In my PHP application, I have a mysql table of articles which has the following columns: article_id articletext category_id score Each article has a score which is calculated based on how ...
1
vote
6answers
333 views

Can i Mix $_get and $_post?

in order to edit my entries i want to: <form id="pregunta" name="pregunta" class="form_pregunta" method="post" action="pregunta.php?id=26"> <h2>Titulo de la ...
0
votes
0answers
109 views

is it possible to integrate php pages with jsp pages?

I have an older website(an ajax-php shopping cart as the main functionality). I'm now working with java and jsps. I was wondering if i can mix together these 2 technologies, as i want to add modules ...
0
votes
0answers
218 views

SoX not mixing audio files

Hello everyone and sorry for my poor english in advance, i have SoX installed on server (CentOS) with mp3 support by host admin and i've got a PHP script calling the system function like this : ...
0
votes
2answers
222 views

PHP & HTMl Mix in a PHP $Var

Mixing html and php is simple: <? while($row): ?> <p><?=$row['name'] ?></p> <?php endwhile; ?> But how could i store html like this into a php variable? (Purposed ...
-1
votes
1answer
123 views

How to mix php and C++ for user authenication?

Hello i'm making a program to get the names of users on my website and use that log for my programs so only registered people can login. How would I go about doing this?