Tagged Questions
0
votes
1answer
35 views
How to add “id” attributes to exsisting element values in a PHP simplexml document
These 2 lines below currently work within the XML document to produce the 2 values :
if (isset($images[0]->fname)) { $image1 = $theimgpath.'/'.$images[0]->fname; } else { $image1 = ''; ...
0
votes
0answers
24 views
Sharer facebook feed, link is wrong can't pass attributes
I'm having a problem passing my URL variables to the facebook feed dialog, i can see it in link when i press the button, but once i post it on facebook, i get everything till the &
Here's my ...
0
votes
2answers
28 views
How to specify a logical expression in the `value` attribute of `select` tag for further use in mySQL?
I am using PHP. Is it possible to write out a logical expression in the value attribute, like this:
<form action="...php">
<select name="formLocation" multiple>
<option ...
0
votes
0answers
12 views
Customer Attributes - Calling standard customer model object
I am using an extension to set additional customer attributes in magento (http://amasty.com/customer-attributes.html). Those attributes are by default set on the One Page checkout under Billing ...
0
votes
1answer
22 views
magento - use admin attribute
Who can help me?
Ik have magento 1.6.2.
And an extension uses this code for my layered navigation:
public function getAllFilterableOptionsAsHash()
{
if (is_null($this->_options))
...
0
votes
0answers
26 views
XML Youtube, access to yt:accessControl? the character :
I have
this xml file
and i'm trying to access to the value of attribute permission in the tag yt:accessControl in php
echo ...
0
votes
1answer
19 views
Is there a way to determine the hash key attribute of a given AWS dynamodb table?
Is there a way to determine the hash key attribute of a given AWS dynamodb table?
if there is a table TAB_A with the hash keys KEY_A, do we have a way to get "KEY_A" as the result.
Thanks
0
votes
1answer
61 views
PHP Equivalent to this Javascript [closed]
I have a HTML template with DIVs holding schema.org markup. The DIV content is populated
via PHP but some DIVs are left blank/empty when we lack the data to put in them. Currently, we can hide the DIV ...
-1
votes
0answers
32 views
Logic help variations in php
I need some help with logic in a php script.
To cut a long story short I am editing an existing addon for oscommerce that uploads products to ebay. This addon works fine on its own, but we need to ...
2
votes
2answers
44 views
Trying to pull XML file from URL, and then pulling in attributes contained inside a tag
I'm trying to pull data from a live XML document, hosted on a remote server. I'm trying to do this using PHP.
The layout of the XML file is like this:
<carparkData>
<Northwest>
...
0
votes
1answer
65 views
Magento custom product attribute visibility
I've been loading up my Magento webshop with a ton of products with a LOT of custom attributes, however, their 'Visible' value in the back end is set to 'No'.
Apart from this being a mistake on my ...
-2
votes
1answer
59 views
W3C Validation Warning, name attribute phasing out ? What would happen with PHP $_POST and forms submissions? [closed]
Any idea's what would be the successor of the name attribute ?
As per the w3c validator ....
Validation Output: 4 Warnings
Below is a list of the warning message(s) produced when checking your ...
0
votes
2answers
27 views
PHP syntax for static attribute of attribute
I have implemented a singleton pattern class, and who can be used in another classes like this :
class myClass {
private $attr;
public function __construct() {
$this->attr = ...
0
votes
1answer
63 views
Display attribute by atribute id not on product page in magento
I am trying to show the attribute with html by attribute id in magento...the thing to note is that I don't have to show it on product page but on the phtml of the custom module.....Please help me out ...
8
votes
5answers
164 views
PHP: Check whether an integer is in a certain interval or not
I am currently working on an achievement system for a small online game. The achievement entity basically has 4 attributes:
id
earnedBy
earnedOn
progress
The last one is supposed to be a ...
0
votes
1answer
80 views
Select Attributes from xml file with php
This my original XML, i want to run sql on it so i can just select one record from but, I've done it successfully, i want to get only record that i want
<catalog>
<product>
...
0
votes
1answer
44 views
Arrays Simplexml accessing attributes different ways
Sorry, if I missed the answer here, but I really couldn't find it between all the attribute-questions.
I used SimpleXML to parse an rss-feed and that works great in dev (xampp)
var_dump:
...
-3
votes
1answer
32 views
Get Values of XML based on Attributes [closed]
<Office: Orlando>
<Branch:Group>
<Branch:credit role='CEO' >John Debeic</Branch:credit>
<Branch:credit role='COO' >Nicholas ...
0
votes
1answer
225 views
Magento - Single Custom Product Attribute with Array of Values
I have a need in Magento to provide an array custom product attribute that outputs all of its values as list items. The basic premise is a list of product ingredients... on a per product basis we need ...
0
votes
0answers
81 views
PHP SoapClient and reading attributes
I have found numerous explanations about how SoapClient expects you to set attributes in a request, but I simply cannot find a way to read attributes from a response.
For example, my SoapClient ...
4
votes
2answers
160 views
Show title or span in select box (Cakephp 1.3)?
Problem
Show lengthy options on mouse hover in select box with a fixed width.
Names are hidden here:
Rendered HTML in browser
<select id="prim" size="5" multiple="multiple" scroabble="1" ...
0
votes
4answers
60 views
retrieve attribute value using jquery
I need to retrieve attribute value of <div> tag using jquery
This is my html code where $_GET['availabel_table'] and $_GET['number-of-person'] are coming from url
<div id=main_menu_data ...
1
vote
2answers
208 views
php ldap search find attribute
I have a php application which is querying an LDAP server. Using the LDAP Browser desktop application I can see users listed as:
cn=joebloe,ou=users,ou=people,o=cuid
with attributes like: ...
2
votes
1answer
66 views
added more informationMagento can't see attribute in backend
I created an attribute using this function in my module setup file:
$this->addAttribute(Mage_Catalog_Model_Product::ENTITY, 'outofstock_date', array(
'group' => 'Inventory',
...
0
votes
3answers
176 views
PHP - remove HTML-attributes from string in JSON
I have a JSON-response from embed.ly which I get in my PHP-script like this:
// jSON URL which should be requested
$json_url = 'http://api.embed.ly/1/oembed?key=hidden&url='.$_POST['url'];
...
0
votes
1answer
48 views
Selecting an XML element according to attribute value
I have a web app (in PHP) which selects the data of an XML element depending on the attribute's value.
However, I'm having trouble trying to actually do this.
Here is the XML which I'm using:
...
0
votes
1answer
275 views
Is there a way to get all Magento Attribute Codes and Values into One Array In One Call?
I am running a script on a server to retrieve all products from a Magento store and then split it out into a specific feed format for use in a shopping engine.
The problem is coming when getting the ...
0
votes
0answers
76 views
PHP: MyBB Plugin, own BBCode with attibutes, parser
(First: Sorry for my bad english..)
For my MyBB Plugin, i want to add a bbcode. To add the bbcode itself is easy - But i would add attributes to the bbcode, and to make a while-loop for every form ...
0
votes
1answer
58 views
Remove customer form attribute
I have added the custom attributes using
$setup->addAttribute('customer','default_business',array(
'type' => 'int',
'label' => 'Default Business ...
0
votes
3answers
74 views
how to get elements, attributes and its values from xml?
Here is my sample xml file. how can i get each elements, attributes and their values. i want all versions' code and name, all release' code and name and all brands' code and name?
<?xml ...
0
votes
1answer
56 views
Extract multiple specific XML attributes using PHP
I'm trying to extract several attributes from an XML file generated by a piece of software but I'm having no luck.
The code I have so far looks like this;
$xml_feed_url = ...
0
votes
1answer
77 views
get quote's product attribute
Hi I'm trying to get a product attribute admin value or id (since it's multilanguage) from the cart items. I've tried many versions of code like this one:
$session = ...
0
votes
2answers
44 views
Trying to extract simplexml attribute
I have an XML file that looks like this:
<?xml version="1.0" encoding="ISO-8859-1"?>
<products>
<product sku="CATDJ" type="CAT" vendor="DJ" active="1" on_sale="0" ...
0
votes
2answers
98 views
Assign an already made attribute to all of magento's attribute sets
after endless searching on the net, about this i finally gave up on the matter.
i'i trying to make a script for magento ( in my case 1.6.2.0 ) to have an already made attribute (in my case "techpage") ...
0
votes
1answer
95 views
php get image width from img style attr
how to get image width and height from img style? for example:
$str = '<img style="margin-right:10px;width:37px;border:0;" src="icons/icon.png">';
How to get width => 37px?
I think if we ...
0
votes
1answer
190 views
show product atribute value only in admin order details magento
Hi i need to show the product *attribute* value in admin *order* details *section*, i don't want to show this attribute on frontend to users , is there any way to do this
thanks
1
vote
1answer
122 views
Magento - Admin attribute name for concrete product
I have spend hours trying to figure out but failed. I need to extract a label and value for 'manufacturer' attribute in Magento. BUT I need to get the description which is in admin field - not the one ...
0
votes
1answer
40 views
Php : simplexml - Getting attribue value
<guid isPermaLink="false">
<title>iphone cover 4</title>
<media:price>$35.95</media:price>
<media:thumbnail url="http://rlv.zcache.com/22.jpg"/>
...
4
votes
3answers
80 views
Regex with attributes
I would like to parse this kind of code :
{articles mode="extrait" nb="3"}
I am using this regex :
@\{(articles)(?:(?:\s|\ )*(?:(\w+)="(\w+)"))*\}@
But it doesn't work, when I do a ...
-1
votes
6answers
157 views
get session attribute in php
Hello I have developed a small menu bar in jsp which collects attribute of a session and displays menu according to it.
<li><%
String myname = (String)session.getAttribute("name"); ...
0
votes
1answer
226 views
List manufacturers with products in category in Magento?
I'm trying to list (with links) all the manufacturers with products in a specific category. This works:
$category = 56;
$layer = Mage::getModel("catalog/layer");
...
2
votes
0answers
131 views
PHP SoapClient - Multiple lines in attributes
I need help as I can't find SOAP attributes with multiple values and lines anywhere created by PHP.
I'm trying to reproduce this SOAP Request with PHP 5.3.x.
I'm having difficulty with the part.
my ...
1
vote
1answer
59 views
Why is the `NAME` attribute considered unsafe?
I'm passing user-generated HTML into a database and I'm trying to make sure that no malicious code is passed through. One of the steps I'm taking is to run passed code through pear's HTML_Safe class ...
0
votes
1answer
129 views
PHP SimpleXML @attributes behavior for nodelists
I've seen this problem a few times, and would like a definitive answer.
Given this structure in xml:
<ByteListSet>
<Byte Order="0">14</Byte>
</ByteListSet>
I am not ...
0
votes
2answers
335 views
Simple HTML DOM wildcard in attribute
I have the following tags
<div class="col *">Text</div>
* is anything.
I want to get all div tag with class attribute contains col (as in my example) using Simple HTML DOM.
I've been ...
-2
votes
1answer
161 views
put info of xml in array using simpleXML php
sources:
display data from XML using php simplexml
Get attributes and values using SimpleXML
PHP SimpleXML + Get Attribute
i am trying to work with the simpleXML for php but cant get it to work
...
0
votes
1answer
51 views
PHP Convert empty attribute to text or number
I have a xml file with attributes
XML Document
<SET name="John" lastname="Steve" city="New York" Country=""/>
This is converted to CSV file with 4 colums.
CSV File
...
2
votes
1answer
44 views
Php no attributes needed?
normally using java. I ve seen a snippet like this today
$oStrategie = new Strategie();
foreach($aData as $key=>$value) {
$oStrategie[$key] = $value;
}
$oStrategie->doSomething()
...
1
vote
1answer
162 views
Parsed SimpleXMLElement is missing attributes [closed]
I have this small chunk of XML that I wish to parse in PHP. The Works tag is ok, I can parse all the attributes just fine. The problem I'm having is with the Doesnt tag, it seems that because it has ...
1
vote
2answers
163 views
Xml PHP Get attributes and its children value
XML:
<?xml version="1.0" encoding="ISO-8859-1"?>
<lessons>
<lesson level="1" course="2">
<name type="Dog" category="Animals">Dog name</name>
...





