-
xhtml (php) to doc (rtf) or pdf
Date: 10/12/07
Keywords: css, html
Is there a way to convert xhtml formatted documents as a document/rich text file or a pdf on the fly?
I have looked at htmldoc, but it does not support css in the current release and even in the upcoming 1.9 release, only CSS1 tags are supported and not the positioning tags.
What I am looking to do is create my resumé in an xhtml 1.0 or 1.1 document and be able to have it convert to word or even pdf. All the agencies that have been contacting me have requested a doc format of my resumé. I have a doc (and pdf) version, but I hate having to do double entry and then save to pdf. I could save as html in OO.org, but I hate doing that. I like the clean xhtml resum&eacue;.
My resumé can be found here. Already, there is a revision difference on the technical resumé. Also, the non-technical version is not offered up in doc and pdf.
I have searched quite a bit and fond services, but they are using the aforementioned htmldoc toolkit. There is a lot of hits on rtf to xhtml, but not vice versa.
Thanks for any help you can give.
Jeff
Source: http://community.livejournal.com/php_dev/78145.html
-
xhtml (php) to doc (rtf) or pdf
Date: 10/12/07
Keywords: css, html
Is there a way to convert xhtml formatted documents as a document/rich text file or a pdf on the fly?
I have looked at htmldoc, but it does not support css in the current release and even in the upcoming 1.9 release, only CSS1 tags are supported and not the positioning tags.
What I am looking to do is create my resumé in an xhtml 1.0 or 1.1 document and be able to have it convert to word or even pdf. All the agencies that have been contacting me have requested a doc format of my resumé. I have a doc (and pdf) version, but I hate having to do double entry and then save to pdf. I could save as html in OO.org, but I hate doing that. I like the clean xhtml resum&eacue;.
My resumé can be found here. Already, there is a revision difference on the technical resumé. Also, the non-technical version is not offered up in doc and pdf.
I have searched quite a bit and fond services, but they are using the aforementioned htmldoc toolkit. There is a lot of hits on rtf to xhtml, but not vice versa.
Thanks for any help you can give.
Jeff
Source: http://php-dev.livejournal.com/78145.html
-
xhtml (php) to doc (rtf) or pdf
Date: 10/12/07
Keywords: css, html
Is there a way to convert xhtml formatted documents as a document/rich text file or a pdf on the fly?
I have looked at htmldoc, but it does not support css in the current release and even in the upcoming 1.9 release, only CSS1 tags are supported and not the positioning tags.
What I am looking to do is create my resumé in an xhtml 1.0 or 1.1 document and be able to have it convert to word or even pdf. All the agencies that have been contacting me have requested a doc format of my resumé. I have a doc (and pdf) version, but I hate having to do double entry and then save to pdf. I could save as html in OO.org, but I hate doing that. I like the clean xhtml resum&eacue;.
My resumé can be found here. Already, there is a revision difference on the technical resumé. Also, the non-technical version is not offered up in doc and pdf.
I have searched quite a bit and fond services, but they are using the aforementioned htmldoc toolkit. There is a lot of hits on rtf to xhtml, but not vice versa.
Thanks for any help you can give.
Jeff
Source: https://php-dev.livejournal.com/78145.html
-
This one ERROR is driving me nuts
Date: 06/09/07
Keywords: html
I am not sure how to fix this error in my xhtml 1.0 transitional validation.
w3c validation of the page
I don't ever remember this error being there.
Suggestions?
Source: http://community.livejournal.com/php_dev/77352.html
-
This one ERROR is driving me nuts
Date: 06/09/07
Keywords: html
I am not sure how to fix this error in my xhtml 1.0 transitional validation.
w3c validation of the page
I don't ever remember this error being there.
Suggestions?
Source: http://php-dev.livejournal.com/77352.html
-
This one ERROR is driving me nuts
Date: 06/09/07
Keywords: html
I am not sure how to fix this error in my xhtml 1.0 transitional validation.
w3c validation of the page
I don't ever remember this error being there.
Suggestions?
Source: https://php-dev.livejournal.com/77352.html
-
Creating a "nonce"
Date: 05/25/07
Keywords: html, xml, web, google
I am working on a class for a web services API. I have decided to go with WSSE based on this article.
http://www.xml.com/pub/a/2003/12/17/dive.html
In the article it mentions the need to create a nonce. I am trying to figure out the best way about going about this. Anyone have any ideas or articles I can read? I haven't found anything good via google.
Source: http://community.livejournal.com/php_dev/77232.html
-
Creating a "nonce"
Date: 05/25/07
Keywords: html, xml, web, google
I am working on a class for a web services API. I have decided to go with WSSE based on this article.
http://www.xml.com/pub/a/2003/12/17/dive.html
In the article it mentions the need to create a nonce. I am trying to figure out the best way about going about this. Anyone have any ideas or articles I can read? I haven't found anything good via google.
Source: http://php-dev.livejournal.com/77232.html
-
Creating a "nonce"
Date: 05/25/07
Keywords: html, xml, web, google
I am working on a class for a web services API. I have decided to go with WSSE based on this article.
http://www.xml.com/pub/a/2003/12/17/dive.html
In the article it mentions the need to create a nonce. I am trying to figure out the best way about going about this. Anyone have any ideas or articles I can read? I haven't found anything good via google.
Source: https://php-dev.livejournal.com/77232.html
-
SimpleXMLElement Question.
Date: 04/29/07
Keywords: xml, web
I am connecting to Amazon's S3 web service. I've created 2 buckets, and am now writing a function to get back the list of buckets from S3, and am having problems parsing the XML with simple XML.
I've got down to the bucket Node in a foreach loop as $bucketObj in the XML this Node had "Name" and "CreationDate" as XML nodes.
$bucketObj->Name;
$bucketObj->CreationDate;
The problem is when I call them instead of getting a "string" variable, I have a "SimpleXMLElement" If I var dump Name it looks like
object(SimpleXMLElement)#17 (1) {
[0]=>
string(13) "JamesTest1234"
}
How do I get access to [0] I've tried all kinds of things. If it was ['0'] I'd know how to get it, but in this case when I try $bucketObj->Name->0 it fails I've also tried $bucketObj->Name[0].
I'm really confused. I've used SimpleXML before and hadn't had any kinds of issues like this, so any suggestions would be greatly appreaciated.
This is the XML I receive with a little modified info:
amazon key data
amazon
JamesTest1234
2007-04-29T01:08:47.000Z
JamesTest12345
2007-04-29T01:10:47.000Z
Source: http://community.livejournal.com/php_dev/76895.html
-
SimpleXMLElement Question.
Date: 04/29/07
Keywords: xml, web
I am connecting to Amazon's S3 web service. I've created 2 buckets, and am now writing a function to get back the list of buckets from S3, and am having problems parsing the XML with simple XML.
I've got down to the bucket Node in a foreach loop as $bucketObj in the XML this Node had "Name" and "CreationDate" as XML nodes.
$bucketObj->Name;
$bucketObj->CreationDate;
The problem is when I call them instead of getting a "string" variable, I have a "SimpleXMLElement" If I var dump Name it looks like
object(SimpleXMLElement)#17 (1) {
[0]=>
string(13) "JamesTest1234"
}
How do I get access to [0] I've tried all kinds of things. If it was ['0'] I'd know how to get it, but in this case when I try $bucketObj->Name->0 it fails I've also tried $bucketObj->Name[0].
I'm really confused. I've used SimpleXML before and hadn't had any kinds of issues like this, so any suggestions would be greatly appreaciated.
This is the XML I receive with a little modified info:
amazon key data
amazon
JamesTest1234
2007-04-29T01:08:47.000Z
JamesTest12345
2007-04-29T01:10:47.000Z
Source: http://php-dev.livejournal.com/76895.html
-
SimpleXMLElement Question.
Date: 04/29/07
Keywords: xml, web
I am connecting to Amazon's S3 web service. I've created 2 buckets, and am now writing a function to get back the list of buckets from S3, and am having problems parsing the XML with simple XML.
I've got down to the bucket Node in a foreach loop as $bucketObj in the XML this Node had "Name" and "CreationDate" as XML nodes.
$bucketObj->Name;
$bucketObj->CreationDate;
The problem is when I call them instead of getting a "string" variable, I have a "SimpleXMLElement" If I var dump Name it looks like
object(SimpleXMLElement)#17 (1) {
[0]=>
string(13) "JamesTest1234"
}
How do I get access to [0] I've tried all kinds of things. If it was ['0'] I'd know how to get it, but in this case when I try $bucketObj->Name->0 it fails I've also tried $bucketObj->Name[0].
I'm really confused. I've used SimpleXML before and hadn't had any kinds of issues like this, so any suggestions would be greatly appreaciated.
This is the XML I receive with a little modified info:
amazon key data
amazon
JamesTest1234
2007-04-29T01:08:47.000Z
JamesTest12345
2007-04-29T01:10:47.000Z
Source: https://php-dev.livejournal.com/76895.html
-
Php5 extending classes and access private variables.
Date: 04/24/07
Keywords: no keywords
I have a classs.
';
var_dump($this->varName);
print '
';
}
}
?>
Why don't I get access to $varName from the parent object? I am extending a class I should have access to all private variables because it's an extension of the class. If I make it public it works fine....
Source: http://community.livejournal.com/php_dev/76569.html
-
Php5 extending classes and access private variables.
Date: 04/24/07
Keywords: no keywords
I have a classs.
';
var_dump($this->varName);
print '
';
}
}
?>
Why don't I get access to $varName from the parent object? I am extending a class I should have access to all private variables because it's an extension of the class. If I make it public it works fine....
Source: http://php-dev.livejournal.com/76569.html
-
Php5 extending classes and access private variables.
Date: 04/24/07
Keywords: no keywords
I have a classs.
';
var_dump($this->varName);
print '
';
}
}
?>
Why don't I get access to $varName from the parent object? I am extending a class I should have access to all private variables because it's an extension of the class. If I make it public it works fine....
Source: https://php-dev.livejournal.com/76569.html
-
How I earn up to $4500, being able to program and desing a little, working from home
Date: 03/11/07
Keywords: no keywords
Source: http://community.livejournal.com/php_dev/76395.html
-
AJAX ajax AJAX
Date: 03/05/07
Keywords: google
Please don't run away because of the title. I'm working on a template which would include a sidebar with the ability to leave comments without refreshing...hence the AJAX implication.
Now, the big issue at hand is I have NO knowledge on how to do this. Here is the template I'm working with. ( clicky )
On the right you'll see the comment box, and above is a small bg image which looks like a quote bubble. So I want the submissions to appear over the bubble. And here is the catch, only three comments are to be allowed on the page. It needs to auto delete any (older) comments beyond 3. And a maximum of 100 characters per submission.
IS THIS POSSIBLE?
Of course it is. But I don't know how to do it. I've googled and ... damn it's a big world out there.
Suggestions or offers?
EDIT: Link fixed.
Source: http://community.livejournal.com/php_dev/76187.html
-
AJAX ajax AJAX
Date: 03/05/07
Keywords: google
Please don't run away because of the title. I'm working on a template which would include a sidebar with the ability to leave comments without refreshing...hence the AJAX implication.
Now, the big issue at hand is I have NO knowledge on how to do this. Here is the template I'm working with. ( clicky )
On the right you'll see the comment box, and above is a small bg image which looks like a quote bubble. So I want the submissions to appear over the bubble. And here is the catch, only three comments are to be allowed on the page. It needs to auto delete any (older) comments beyond 3. And a maximum of 100 characters per submission.
IS THIS POSSIBLE?
Of course it is. But I don't know how to do it. I've googled and ... damn it's a big world out there.
Suggestions or offers?
EDIT: Link fixed.
Source: http://php-dev.livejournal.com/76187.html
-
AJAX ajax AJAX
Date: 03/05/07
Keywords: google
Please don't run away because of the title. I'm working on a template which would include a sidebar with the ability to leave comments without refreshing...hence the AJAX implication.
Now, the big issue at hand is I have NO knowledge on how to do this. Here is the template I'm working with. ( clicky )
On the right you'll see the comment box, and above is a small bg image which looks like a quote bubble. So I want the submissions to appear over the bubble. And here is the catch, only three comments are to be allowed on the page. It needs to auto delete any (older) comments beyond 3. And a maximum of 100 characters per submission.
IS THIS POSSIBLE?
Of course it is. But I don't know how to do it. I've googled and ... damn it's a big world out there.
Suggestions or offers?
EDIT: Link fixed.
Source: https://php-dev.livejournal.com/76187.html
-
New good project
Date: 02/19/07
Keywords: php, rss, web
Hello! I would like to provide new project for webmasters and php-developers scriptmafia.org
You can read rss-translation in LiveJournal scriptmafia
Source: http://community.livejournal.com/php_dev/75879.html