2
votes
1answer
41 views

Number_format for arabic/persian numbers

I have a "price" field in a mysql database, which contains the price of a product in arabic or persian numbers. Example of number: ۱۲۳۴۵۶۷۸۹۰ //1234567890 I cannot figure out how to format this so ...
0
votes
2answers
21 views

Aggregating many tables and displaying certain columns as one

I've got a problem with understanding php-mysql querying. Using this kind of query I try to print out all persons (inco_person) with emails (inco_phone) and phone numbers assigned to them ...
0
votes
2answers
20 views

Date formatting in php, unexpected result

The Script Below: <?php $postedDate = "Sat May 11 2013 20:36:24 GMT-0700 (PDT)"; $date = date('Y-m-d H:i:s', strtotime($postedDate)); echo json_encode($date); ?> Returns the value: ...
-1
votes
0answers
43 views

How to format php/html mixed templates?

in fact I totally like aptana, but the one thing it dismissed itself for me, is the not existing (or is it?) auto-formatting of php/html mixed templates. In PDT this is possible, but PDT itself is ...
0
votes
1answer
32 views

Formatting a cell to a percentage in PHPExcel

I am automating an excel spreadsheet using PHP. I have been looking for a way to pragmatically format a cell to a percentage in PHPExcel. I want to change a value like 0.077922078 to 8% ...
0
votes
1answer
41 views

CSV file number format is different in EXCEL and Notepad

I have received a report as an CSV file. It contains the contact names and contact numbers. When i try to open the file in Excel, it displays the contact number like "912224308876". But, if i try to ...
0
votes
1answer
30 views

JSON formatting errors for two files

I would like to know, I have just created my datatables, but two of them are giving JSON formatting errors. I am doing a join of two tables in these two. I tried running the query in phpmyadmin, and ...
0
votes
3answers
26 views

PHP - taking a text input with formatting

I'm quite new to PHP and I have a question. Is there a way to make a textbox, that could accept text with formatting? As far as I know the "regular" textarea is able to accept only raw text with no ...
2
votes
1answer
26 views

add a plus sign next to positive value on excel report

I use this line to formate my excel cell $objPHPExcel->getActiveSheet()->getStyle('D12')->getNumberFormat()->setFormatCode("0%"); if the value is negative, excel takes care of that and ...
0
votes
3answers
32 views

String at the end of a text inside another string

I would like to use one string inside another string, like this: $url = "http://www.sample.com/index.php?nr=$string[0]"; how should I insert this string at the end?
6
votes
3answers
166 views

Omitting redundant months and years in date range list

I have got strange issue with dates of events and I have tried hard to get it fixed but unable to do it. I am attaching a screenshot of how I want to display the dates on the page : In the picture ...
0
votes
2answers
38 views

strip_tags is keeping <a> but stripping its attributes

As the title says, when I use strip_tags($text, "<a>...<others>") and I insert hyperlinks into $text, I am left with an output of <a> rather than <a href='...'>. How can I get ...
0
votes
2answers
30 views

Get number of hours as an int since specific date in mysql query

So, I have an issue that I'm trying to wrap my head around. Essentially I have a database that shows when computers were last connected to the database. I am supposed to calculate the uptime of ...
1
vote
1answer
57 views

Formatting Human Names - PHP (or any language) library?

Is there a way to format human names? For example, "joHn dOE" should be "John Doe". Or "angus macgyver" should be "Angus MacGyver". etc. I know that any solution is probably not going to be complete ...
0
votes
1answer
58 views

How can I use CSS to add a blank column between paired column groupings?

I have the following code that displays a matrix of word counts in three columns of five paired rows, each pair containing a word and a count (supplied by @Aiias here in stackoverflow). I added the ...
0
votes
4answers
46 views

PHP Array formatting

I have the variable $array containing: Array ( [0] => A [1] => C ) I want this array to be converted to two new variables: Variable 1 outputting: A,C Variable 1 outputting: 'A', 'C' ...
0
votes
3answers
69 views

PHP time formatting confusion

This is actually a followup question From this question , but it presents a whole different problem . I also know it is pretty confusing so please bear with me ,. I have a date that presents like : ...
2
votes
3answers
46 views

PHP transforming time formats and adding random time vars

I need to generate a time of format : [ Y-m-d H:i:s ] from strings that look like 7/03/2013 ( yep, can be 7 or 07 ) . I use $date = '7/03/2013'; $date = date('Y-m-d H:i:s', strtotime($date)); ...
0
votes
0answers
46 views

JSON deeper encoding

I have a couple of objects that are json-encoded, and I would like to write them to a json file. The data is gathered from facebook. For example if I do $myfile="testson.json"; ...
-1
votes
3answers
44 views

Modifying Array Formatting [closed]

(sorry I posted a very similar question earlier, but it looks like my original question was a little bit off) Here is my code: $.ajax({ url: ...
0
votes
3answers
68 views

Formatting date stored in phpmyadmin

I'm querying a database and echoing the "date" column using PHP. The date is displaying as YYYY-MM-DD, as it is saved under the "date" data type. Which function would be best suited to convert the ...
0
votes
1answer
15 views

PHP syntax -Breaking one-liners of paramaters and returns / echo

Using arrays, I see quit often the following formatting : $somearray = array( 'one'=>'one_value', 'twokey'=>'two_value', ...
-1
votes
1answer
144 views

How to retrieve information from database and display in table?

This is my php code. <?php session_start(); foreach($_POST AS $key => $val) { $_SESSION[$key]=$val; } mysql_connect('localhost', 'bikec_user', '4348@TxState'); ...
0
votes
1answer
89 views

Remove string “Array” from print_r()'s output

How can I remove the string "Array" in the printout from print_r()? I have tried using string replace, but it didn't work. Example output: Array ( [0] => Array ( [id] ...
0
votes
1answer
42 views

I'm having trouble with putting PHP code on more than one line

<?php $txt="Hello, my name is Max Koenig."; $intro="I was Born and raised in Calgary, Alberta with my Mother, Father and Sister."; echo $txt . " ". $intro; echo strlen ("Hello, my name is Max ...
-1
votes
1answer
38 views

Convert uk phone as a string into valid mobile and landline formats [closed]

I am working on a auto listing website for UK and i have used a field for mobile with max 11 digits as max limit, with no spaces or anything, only 11 digit mobile and landline numbers can be there. I ...
0
votes
1answer
172 views

Format string to HTML in C#

So I am writing a game with Unity and I am sending players an email with all of their stats on how they played. The way I send the email is I format a string that has the html already written that ...
0
votes
0answers
44 views

Sort & limit records by year

I have a page called events that lists various events that are taking place. It is split into two pages; events which lists current and upcoming events & events/past which lists all events that ...
0
votes
3answers
26 views

string modification messes formatting in PHP

$str = date("d")+1 . date("-m") . date("-y"); $date = new DateTime($str); echo $date->format('y-m-d '); This works fine, but... $str = date("d")+1 . date("-m") . date("-y"); $date = new ...
0
votes
1answer
44 views

convert date format within a webservice php context

I am consuming a webservice in php. The piece of code below gives me the following result with regard to the date notation: Begindatum : 2012-07-02T00:00:00. I would like to have that in a European ...
0
votes
2answers
299 views

Remove empty lines in Netbeans 7.2

Is there any plugin, macro or built-in function that can remove empty or redundant empty lines in Netbeans 7.2 (PHP bundle, Windows 7)? Due to different line-break formats in my upload and download ...
0
votes
3answers
278 views

How to format output from php form to html email

Firstly I am not a programmer - so I am trying to adapt things to what I need. I have been working for some weeks on a html form that produces a unique code and emails the data to me and the form ...
0
votes
0answers
79 views

Good IDE (Or VIM replacement/plugin) for code formatting over SSH (PHP or others)

I find myself having to code PHP on a remote server, and, being comparatively new at PHP, I find myself executing and testing a lot. At this point though, I have an error in quite a few nested if ...
0
votes
2answers
79 views

formatting local mobile to international in php

I am looking for a simple regex to convert both UK (44) and Indian (91) numbers into a valid international format using PHP. The formats required are: 447856555333 (for uk mobile numbers) ...
0
votes
2answers
134 views

How can I use a filename with special characters in a Content-Disposition header?

I have a problem with some php code: $link = $_GET['url']; $name = $_GET['name']; $str = '[wanted-web.ro]'; header("Content-Disposition: attachment; filename=$str $name"); header("Content-type: ...
0
votes
1answer
141 views

How to display text in the same format as added in mysql text field using php echo

I want to display a large amount of text using a php echo command. I have that data stored in mysql database table in a text field. What i want to achieve is that the data should be displayed in the ...
0
votes
1answer
82 views

PDF format error with PHP

I have created a download.php with the following headers: header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream'); ...
0
votes
1answer
225 views

TinyMCE formatted text in MySQL database

I have been searching for an answer for this for quite some time now, and I haven't been able to find a logical one yet. I want to use TinyMCE to allow users to post formatted blogs. I don't want to ...
1
vote
1answer
37 views

Mysql Query formatting issue

I'm building a Private Message system, and my database has multiple lines. In database: I love that song do you? -Joe But my query ends up displaying like this I love that song do you? -Joe ...
1
vote
1answer
57 views

Javascript is not functioning properly, please have a quick look to debug

I have a bit of Javascript which exists in a PHP script. Here it is: // start of JS script print("<script type=\"text/javascript\"> <!--\n"); print("function storeData()"); print("{"); ...
0
votes
0answers
67 views

Wordpress Widget Formatting

I have a nifty widget that shows testimonials from Woo Themes. The testimonial itself is surrounded in blockquotes. However, after calling get_the_excerpt, it saves the text into a string, then ...
0
votes
1answer
160 views

Formatting tabs HTML PHP CSS

I've been away from programming in general for a long time. Amazing how you forget the simplest things. So I'm trying to warm-up my web design/PHP by making a resume generator. I made my resume in ...
-2
votes
3answers
104 views

How to remove dots from numbers?

I have a form formatted with javascript, which makes numbers look like: 10.000 or 2.300 <form> <input type="text" name="price_1" value="2.300"> </form> But i want to store them ...
0
votes
4answers
102 views

Need to display price without decimal

Im trying to display price of a product, and when the price is a whole value to NOT display the decimal ".00"; But the current result is ALWAYS showing the decimal value. I have provided my current ...
0
votes
2answers
85 views

How to Format a String Using PHP sscanf()

I am trying to understand how the sscanf() function works in PHP In both code snippits below, I do not get any formatted output. What I am doing wrong with the sscanf() function? Thanks Snipit #1 ...
-2
votes
2answers
76 views

Display fixed minimum price in php search results [closed]

We're using an API to display a list of properties in search results and we need to apply a fixed minimum price of £300 for short stays at properties. Currently, it is possible to input a stay of 1 ...
0
votes
3answers
72 views

Date / Time showing odd value in PHP

I have wierd issues with time / date in PHP this year. Code have not changed at all and my dates are bugged. Code is for example: $date = strtotime($order['date']); $dateNew = date('Y-m-d h:i A', ...
0
votes
2answers
164 views

How to convert varied “h m s” Excel time formats?

I have an excel sheet that I am importing but I would like some of the data to be converted down to minutes. Though the formats vary from 5h 5m 6.64s to 6.64s how would i be able to convert this down ...
4
votes
3answers
186 views

PHP substr() function that allows you to set start and stop point AND keeps HTML formatting?

With the normal substr() function in PHP you have the ability to decide where you want to "start" cutting the string, as well as set as setting the length. The length is probably used the most, but in ...
1
vote
2answers
53 views

Specific database columns into an array

Originally, this simple array and a foreach statement works perfect, but I need to change from a php array to getting the information out of the database: $serversArray = array( ...

1 2 3 4 5 7