Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I ask if there is any way to make new in-design file ( .indd)
from programming !
the problem is that i want to make a program for newspaper to manage the newspaper dynamic content and then convert the html5 ( or any other output ) into in-design with its columns and pages
Read IDML file format specification (pdf).
IDML is an XML representation of an InDesign document or components. This document describes the structure of IDML files, the XML schema for IDML validation, and provides examples of IDML file content. This document has been updated for IDML version 7.0, which corresponds to InDesign CS5. Sections that are new in this version are indicated by the notation “(IDML 7.0).”
You can also use some SDK from Adobe
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
here is an example, say every item in each list was clicked on http://katproxy.com/the-big-bang-theory-tv8511/, how would you proceed to get the source code of the modified web page using php considering the fact that the url has not changed (file_get_contents is probably out of the question).
Thank you!
Using PHP? You can't, not without fetching the page source and evaluating its JavaScript, which is obviously quite impractical.
The "page" hasn't change, only your in-browser representation of the DOM has been modified. You would need PHP to talk to your browser, and ask for the state of its DOM, not the remote server, which cannot possibly serve up the HTML representation of your browser's current DOM.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Improve this question
I have a trouble with the CCaptcha widget. Image is corrupted. Headers are looks right. When I tried to list an image as a text, I didn't find any text inclusions, it's looks like as a usual PNG content.
When I created an another webapp on the same framework instance, CCaptcha works correctly, but in my first webapp have a trouble.
In my case GD library is used. Access filter is not used.
I'd found an error. It was a space before PHP open tag in top of base controller file. And now the bug is fixed.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 9 years ago.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Improve this question
can you please help with my project, i'm just newbie on PHP programming.
i had an excel reader php, it's working good, converting my excel file into PHP .
i want hopefully to detect the newest excel file in the folder then convert it into html using excel reader.
is that possible?
hope you can help me, thank you so much
You can iterate over a directory in PHP by using dir (http://nl1.php.net/manual/en/function.dir.php )and then use filemtime to check when the file was modified (http://php.net/manual/en/function.filemtime.php ).
As for converting to HTML - I assume that you have your Excel file loaded into PHP data structures (objects or arrays for example); if so, you can easily generate HTML using echo statements or - perhaps a bit more advanced - a teplating system.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I have a folder which contains several html files: 1.html, 2.html, 3.html, etc., etc. in sequential order.
I would like for PHP to randomly load in these files into a PHP webpage that I have. How can I go about doing this?
Also -- is PHP the most efficient way to do this? Would jQuery be better?
jquery could do it, but you'd have to send a list of the available files to the client beforehand, so it has a list to choose from. This would be required if you can't guaranteed there'll never be "holes" in the files, e.g. 1,2,4,5 (hey, where's 3?).
PHP can deal with the raw filesystem, and can always get the list of files, e.g.
<?php
$files = glob('*.html');
$random_file = $files[array_rand($files)];
include($random_file);
This will handle any .html file, regardless of holes in the numbering sequence, or even if they're numbered at all.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I know this works with Photoshop where you can insert all kinds of text that serves a copyright.
Is it possible with PHP? How would you go about doing it?
UPDATE
I am talking about meta data in the file header, not a watermark.
For example, I'n Photoshop when you open a file you can click on File-> File info.. and set Document title, descriptions, keywords .... all the way to IPTC.
I think the PHP Exif Library is what you want:
The PHP Exif Library (PEL) lets you
fully manipulate Exif (Exchangeable
Image File Format) data. This is the
data that digital cameras place in
their images, such as the date and
time, shutter speed, ISO value and so
on.
Using PEL, one can fully modify the
Exif data, meaning that it can be both
read and written. Completely new Exif
data can also be added to images. PEL
is written completely in PHP and
depends on nothing except a standard
installation of PHP, version 5. PEL is
hosted on SourceForge.