i have a bucle to know all my information.
$s = OCIParse($c, $query);
OCIExecute($s, OCI_DEFAULT);
while (OCIFetch($s)) {
echo ociresult($s, 1) . " ";
echo ociresult($s, 2) . " ";...
Type: Posts; User: guif; Keyword(s):
i have a bucle to know all my information.
$s = OCIParse($c, $query);
OCIExecute($s, OCI_DEFAULT);
while (OCIFetch($s)) {
echo ociresult($s, 1) . " ";
echo ociresult($s, 2) . " ";...
I know to create a oracle connection but i don't know tho make a Echo out the output...
hi!
i would like to monitoring the size of tablaspaces in my oracle.
I have the query to show this values but i don't know to show in my web.
The query is:
$query = "select ...
I have a row in mysql that the content is:
insert into Link (Id_Link,Link) values (1,'//server/folder/documentum.doc');
I would like to make a link and I put this:
<a href="file:///<?php...
I have the solution!
At first, I put:
$valor = $_GET['id'];
and the query:
$queEmp = "select pkey, UPDATED, reporter, resolution, summary from `jssue` where pkey like '$valor'";
Now, I see the element!!!
I change this:
<li><a href="lib/consultas.php?accion=E" onclick="load('lib/consultas.php?accion=E','consulta');return false;">
for:
<li><a...
I have problems with my Autosuggest project.
I don't know to detect which is the value that I click.
In my index.php i have this:
<div id="search-wrap">
Seach values:<br>
I would like to open a local folder with a link with Firefox.
Normally, I put this:
<a href="file://///10.1.206.170/folder/folder 1/">fodler in LAN</a>
This link is work correctly but it's...
yeah!
finally I put this code:
<?php
$str = exec("ping -n 1 -w 1 100.100.100.100", $input, $result);
if ($result == 0){
echo "<img src=\"on.png\">";
}else{
echo "<img src=\"off.png\">";
I change this code and I put this:
IP: 10.140.206.123 (
<?php
$ping_ex = exec("ping -n 1 10.110.206.123", $ping_result, $pr);
if (count($ping_result) > 1){
echo "<img src=\"on.png\">";
}...
well, i would like to monitoring diferetns servers.
Why not's possible????
127.0.0.1 is the ip of all lan targets...
hi! I put this PHP file into my apache server:
<?php
$ip = $_SERVER['127.0.0.1'];
exec("ping -n 4 $ip 2>&1", $output, $retval);
if ($retval != 0) {
echo "no!";
}
I would like to make a simple autosuggest but i don't understand why my code is not running.
Help me please!
here is the code:
<?php
require_once('db.php');
include('classes/stem.php');...
yes, i don't want a program... i would like to make all and very simple
In my index, i would like to list all my posts, but, if i put: www.page.com/tag/ajax i would like to list only the pages of ajax.
hi!
I see some webs with a similar style as wordpress.com. For example: http://codesnippets.joyent.com/ (see the "Top Tags Alphabetically" at the left the page)
how can i make a small web with 3 or...
oh! I change $search-q2 for search_q2 because
"-" is not a valid character.
And, when I put echo $search_q2;. The result of echo is a white page without results.
If I put echo $search-q2; the result is 0.
And, If I put echo $queEmp; i see a white page without results.
With PHP is possible to give a variable of another PHP file?
this is the text box into a index.php:
<input name="search-q2" id="search-q2" type="text" onkeyup="javascript:autosuggest2()"/>
and into the consultas.php, the case E:
case 'E':
I change it.
next the case E I insert:
case 'E':
echo "hello value!: <br>";
echo ?????
in ???? what's the value of my selected AutoSuggest content into the text box?
oh sorry!
The problem is the query of "CASE: E". It's return the error.
hi!
I have problems to give the value of a text.
I have in a PHP this:
<?php
$searchq = strip_tags($_GET['q']);
$getRecord_sql = 'select pkey from jiraissue where project = 10040 and...
this is an answer for me?
I think that my problem is that the DIV don't open a javascripts files because if I open directly the file it's open correctly....
i have the same problem. When I open an html into a <div> content, if the html have a javascript code it's not run. why?
here is an example:
Enter to http://www.guif.net/menu/hola.html (this is a...