Simple function outputting text. Exists in script languages.
-1
votes
2answers
15 views
Show array values within an array php
I have a piece of code that loops and displays values for job vacancies:
<?php foreach($arrXML as $inner_arr)
foreach($inner_arr as $value) { ?>
<p>Job Ref: <?php echo ...
0
votes
2answers
31 views
Echo and backslash (bash)
I'm trying to make a function in my ~/.bashrc file that uses an echo command to pass its arguments through the pipeline. It works, but when I try to input a '\' character it disappears. If I type \\ ...
-1
votes
3answers
26 views
How to echo custom function [closed]
i have this function
function getServerTitle() {
return($this->_values[$this->_indexes["SERVERTITLE"][0]]["value"]);
}
And i wanted to echo it, but it doesn't work.
echo ...
0
votes
3answers
24 views
Html attribute with echo
I have the next html element:
<div class="bar bar-success" style="width: 20%;"><? echo $pass; ?></div>
Now, I want that the width element would changed according to my echo ...
0
votes
1answer
26 views
In vim, how do I redirect the output of a vimscript function?
I have this vimscript function
function! Env()
redir => s
sil! exe "norm!:ec$\<c-a>'\<c-b>\<right>\<right>\<del>'\<cr>"
redir END
return ...
-3
votes
2answers
42 views
Preventing SQL Injections Via $_Get [duplicate]
I have a code on my website that calls upon the pin of a specific row and than echos data from that row. I need to know how i can prevent an SQL injection using the code.
Here it is:
<?php
if ...
0
votes
1answer
24 views
PHP Date/Time - If “Day = X” and “Time is between 18 and 21” echo
I have a radio schedule and what I'd like to do is have specific text displayed as bold when a show is live, and displayed as normal when not live.
Shows are on set days of the week and at set times ...
1
vote
2answers
34 views
Call row with link and Id [closed]
firstly let me say i'm still a noob so the more descriptive you are the better.
My question is, how can you locate and echo content of a specific row using the row id in the url bar. Example: Row 4: ...
1
vote
0answers
21 views
Sending shell command returns “No such file or directory” while it actually exists
I am making a Core management app for rooted android dual-core phones and up ... So what this app shall do is modify a file in the /sys directory , so it surely needs to use root or "su" . So what i ...
-2
votes
1answer
44 views
In shells, how to find a file in current directory with at least 2 characters but not contain cs by using echo
In shells, how to find a file in current directory whose name has at least 2 characters but not contain cs by using echo.
0
votes
0answers
18 views
PHP & mySQLi - while mysqli_fetch_array not echoing result
trying to echo the rows. i dont get any errors, but it works if i do the second part.
<?php
$result = mysqli_query($db_connect, "SELECT * FROM items") or die ("Query is invalid." . ...
0
votes
2answers
23 views
PHP copy image from url to server and echo the final url
I am trying to write a code that will copy an image from URL to a relative path on my server with a random file name and echo back the final url.
I have 2 problems:
It doesn't work with relative ...
-4
votes
0answers
47 views
Cant get php to echo data? [closed]
Im trying to get data from the database and echo it. Im trying to echo it in the text input fields and ive tried to echo it just as text and its not working its worked in the past but cant find where ...
0
votes
3answers
45 views
echo out multiple css classes for one div
I'm only getting one CSS class to load in a situation where I'm echoing PHP variables as classes.
The html looks fine and should work, the two types of code I thought would work are pretty much the ...
0
votes
2answers
40 views
Text is not being echoed at all when CSS and file_get_contents are being used
<html>
<?php
$url = "http://www.youtube.com/embed/FTGNAupPqpU";
$str = "title of video here";
$css = <<<EOT
<style type="text/css">
body
{
background: #eeeeee;
...
-5
votes
1answer
27 views
Get Session ID of a link and produce Dynamic page PHP [closed]
What i wanna do is create two hyperlinks and both links take them to xx.php.
so what i want is if someone clicks link 1 it shows them echo "hello";
and if link two is clicked then it shows echo "Hi";
...
0
votes
1answer
37 views
How to make a lightbox for each individual row in Datatables jQuery
I am having a bit of trouble, and I'm still figuring out some old problems on a couple of last questions I have had. So if this seems like a duplicate it is not. I am using Datatables jQuery ...
0
votes
3answers
38 views
Echo with parameters and without?
I know the following three statement will prodcue the same output:
echo "Hello" . "World! <br/>";
echo "Hello"; echo "World!", "<br/>";
echo "Hello", "World!", "<br/>";
But what ...
0
votes
3answers
29 views
can a search engine read a PHP echo in a sites alt tags?
Is it good practice to use PHP to inject text into your alt or title tags?
Can a search engine read the title tag or does it just see the code?
This is basically what I was going for
<?php
...
0
votes
2answers
13 views
Mysql error echoing the variable
I have a mysql query as below -
$id_order_last="15";
$id_order[]=array();
$sql1="SELECT * FROM `ps_orders` WHERE `id_order`>
$id_order_last order by `id_order`";
echo $sql1;
...
-1
votes
2answers
44 views
Add a Title and fields in a table got from mysql
I have a function that returns a table which is generated from the values that are in a database.
the function returns a table in this format:
TOTAL SS FAI USER ...
-1
votes
2answers
34 views
Show the result from query database php
i have a code like this:
$genre = 'jazz';
$what_genre = mysql_real_escape_string($genre);
$query = mysql_query("SELECT song.id, song.title, genre.genre FROM song INNER JOIN genre ON ...
0
votes
2answers
23 views
echo prints in cron job of linux system
Where does the echo prints of the cron job in linux goes [ If i didnt redirect into a file ]?
Have read about Mail transfer agent, Bit Bucket, STDOUT buffer are some of the options..
Not sure which ...
0
votes
1answer
38 views
Using echo with lists in php?
I have the following PHP code:
$getnews = mysql_query("SELECT * FROM news ORDER BY id DESC") or die(mysql_error());
while ($row = mysql_fetch_assoc($getnews)) {
$id = $row['id'];
$title = ...
1
vote
2answers
56 views
How to print two arrays side by side with bash script?
I couldn't find a good and simple answer to this question neither on google nor here on stackoverflow.
Basically I have two arrays that I need to print into the terminal side by side since one array ...
-2
votes
0answers
26 views
PHP - Files prepended with ss_ are duplicated
My problem is my php script is mysteriously duplicating files (images). It's a simple script to read a directory of jpg images and output html. All image files are in one directory. Some filenames are ...
0
votes
1answer
16 views
PHP Echo Order Behaviour
I have a PHP script that requires the Yahoo SDK. When I include the following I get no echo output until the script completes:
require("/root/yahoosdk/ysdk/examples/common.inc.php");
I can comment ...
0
votes
3answers
59 views
How do I echo slashes in php?
Everytime I check the HTML output of this piece of code, the slashes aren't included. Thus, the background image fails. I even put it through a html to php converter. Im lost; please help.
while($row ...
0
votes
2answers
56 views
print variable “$1” as string in bash script
I want to print string called "$1". But when I do this with echo it prints string which equals to "$1" variable. How can I print "$1" just like string?
for example:
$1 = "output"
echo $1 ==> ...
0
votes
3answers
40 views
Echo program out to file even if a kill the program (linux)
I have a C program that outputs some information to the console and then goes to infinite loop. I need to run the program on the background and redirect the output to a log file. The redirection works ...
0
votes
1answer
32 views
php eliminate blank option lines in for loop echo [closed]
I have a strange thing happening and I don't know why. I have a multidimensional array that looks like this:
Array ( [0] => Array (
[title] => I'm a title
[desc] ...
0
votes
1answer
17 views
permalink that goes straight to a div within a post
I was wondering what is the php code to go directly to a div on single post on a wordpress page (comments)
For example. The link to go to the comments section of a particular post would be ...
-2
votes
1answer
32 views
Want to echo from a Array produced by JSON response of Twitter API
Here is my Array
Array([ids] => Array
(
[0] => 989422512
[1] => 354847710
[2] => 273809946
[3] => ...
-1
votes
1answer
35 views
Ye olde PHP email form returning blanks and no echoes [closed]
I realise this kind of question gets asked a lot, but playing around with this code and searching for answers online has yielded nothing helpful as yet, so I here we are!
It's your classic php email ...
0
votes
3answers
47 views
How to I make this PHP function more efficient?
I want to find out a more efficient way of going about this function:
<?php
function zipError($title, $desc) {
echo '<style type="text/css">';
echo 'body { ...
0
votes
0answers
38 views
Yii Framework: avoid use echo statement on views
I'm trying to understand Yii framework and I want to avoid the use of the echo statement to build the view. Now I'm writing the code like this:
<?php
echo "<table>";
for ($i = 0; $i ...
1
vote
3answers
61 views
Prompting a user for two numbers in Unix to make a calculation
I want to write a script which will prompt the user for two numbers, representing the width and height of a rectangle in centimetres and output the area of the rectangle in both square centimetres and ...
0
votes
2answers
18 views
Displaying (if) link in a cell
The table cell in the below code is being used as part of a messaging system and it returns the url as a link to the attached file to the message.
echo '<td width="25%"><a ...
0
votes
1answer
45 views
click on the button to run php code and echo result
I want to implement this script: http://www.daniloaz.com/en/560/programming/backup-de-bases-de-datos-mysql-con-php/
on my website to backup all the database at the end of the day.
May I know is it ...
0
votes
0answers
23 views
Hide one category from 'Show All'
I have the below code at the top of my page which displays a small clickable thumbnail for every category. For eg, ALL, News, TV, Radio, Weather. It defaults to showing 'ALL' but when you click on ...
0
votes
1answer
27 views
Several fields won't display
I have a single table named Company. It has five columns (Company_ID, Company_Name, Product_Type, City and State). Using a script I've repurposed for this assignment I can get City and State to ...
0
votes
1answer
32 views
Print or echo a selected option in php, without a form
This is a shipping module, which allows you to choose store branches for local pickup.
The branches are listed in a csv, not in a database.
<?php
if ( ($n > 1) || ($n2 > 1) ) {
...
1
vote
2answers
67 views
PHP Parsing Freebase Query
This will be the most basic question ever asked on this site! I am new to programming and very new to freebase - yet I couldn't find the answer I need anywhere, so here goes...
I am using the basic ...
1
vote
1answer
23 views
Trying to add html w/ link using echo after else in php
I have content only available to registered users - guests see an intro but if they click to read more are shown a message to login or register - I need to add a link to the registration page in the ...
0
votes
0answers
19 views
Adding a href on a image in a table with a variable attached to send to another page
I am trying to add a click event on a image to send a variable to another page. This is from a table generated in php
echo '<td>', '<center>', $rows['username'],'<br>','<a ...
1
vote
4answers
70 views
php, Echo mysql query by ID
I'm trying to display items for a database on my index, but only from the id's I want, not the whole table. So far ive tried this but it does not work:
Download.php
<?php
$id = $_GET['id'];
...
0
votes
0answers
70 views
percent sign in PHP string
I want to fire a query on database:
$query="SELECT field1 from table_name where field2 like '%".$_REQUEST['var1']."%'";
Page is showing 500 internal server error.
At the time of debugging, I echo ...
0
votes
1answer
38 views
PHP variables in a complex way
<?php
$td = date("d");
for ($i = 1; $i <= $td; $i++)
{
$num18 = count($this->numbermonth18);
echo "['1'," . $num18 . "],";
}
The above code will display the output like, ...
0
votes
1answer
33 views
PHP: Echo Validation Message
I have a form in 'index.php' in wich I will validate some text fields using 'submit.php', if everything is ok it should insert the fields into my database using 'submit.php'. Now, if 'submit.php' ...
0
votes
2answers
36 views
PHP While loop skipping code
I have a while loop in PHP with various calculations as well as a number of IF/ELSE statements. It is hard coded to loop 100 times or until it is broken if a certain condition is met. Each time the ...



