Inline HTML code completion & intellisense for PHP

Let us know what you would like to see in the next version of this software

Moderator: kfury77

Forum rules
Please follow these guidelines when posting feature requests. This will help to increase the value of your contribution.
  • Do not create new topics for already requested features. Add your comments to the existing feature request topics instead;
  • Create separate topic for each feature suggestion. Do NOT post a number of non-related feature suggestions in a single topic;
  • Give your topic a meaningful title. Do NOT create topics with meaningless titles, such as "My Suggestion" or "My Problem".
Please note that we DO READ all suggestions, even if a reply is not posted. Thanks!
Post Reply
SKJoy2001
Posts: 1
Joined: Tue Jul 26, 2011 4:46 pm
Location: Dhaka, Bangladesh
Contact:

Inline HTML code completion & intellisense for PHP

Post by SKJoy2001 »

Product: Rapid PHP

Feature: Code completion and intellisense for inline HTML with attributes in PHP

Sample code:

Code: Select all

<?php
    $NameMarker="%NAME%";
    $Name="Joy";
    $Sentence="My name is {$NameMarker}";

    print "
        <div id=\"MyNameSentenceElement\" class=\"MyNameSentence\">
            ".str_replace($NameMarker, $Name, $Sentence)."
        </div>
    ";
?>
Note: Would be great if Rapid PHP could offer code completion for that DIV element in the PHP "print" statement, as well as intellisence support for the attributes for that DIV element (escaping the quotes are required as well when using inline HTML).
Post Reply