Search:

Type: Posts; User: WannaB_Geek

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    2,185

    I'm not sure whether or not there is a built-in...

    I'm not sure whether or not there is a built-in feature that does this.
    But since PHP is open-source, it may be possible to modify it in order to execute native C/C++
  2. Replies
    4
    Views
    2,185

    C, PHP interaction

    Does anyone know how to write functions in C or C++ and then use them in PHP?

    Thanks.
  3. Replies
    1
    Views
    1,389

    Algebra library

    Does anyone know of a library availible with classes and functions to solve algebraic equations? If it can do calculus, even better.
  4. Thread: CSP Help

    by WannaB_Geek
    Replies
    3
    Views
    1,183

    I don't mean regular C include directives...

    I don't mean regular C include directives (#include <iostream>)

    I mean a CSP tag that works as a server-side include:
    <%@ include uri="uri" (static | dynamic) %>

    static makes it work much like...
  5. Thread: CSP Help

    by WannaB_Geek
    Replies
    3
    Views
    1,183

    CSP Help

    I'm having trouble understanding the syntax for the include tag in CSP (C++ Server Pages).
    Can someone please explain it to me?

    Thanks,
    WannaB_Geek
  6. Replies
    7
    Views
    1,825

    Here's a rough framework of what I'm trying to...

    Here's a rough framework of what I'm trying to do:

    The tree class would provide the structure for the hierarchy, in addition to pointers to relatives. It would function somewhat like a forking...
  7. Replies
    7
    Views
    1,825

    A binary tree just puts objects into a hierarchy...

    A binary tree just puts objects into a hierarchy for accessibility purposes. What I need is a container that allows you to create a specific hierarchy, more like an org-chart type of hierarchy.
    ...
  8. Replies
    7
    Views
    1,825

    Hierarchy container?

    Is there any container class that can arrange objects into a hierarchy, in such a way that each object in the hierarchy knows that's above it, what's below it, what's next to it, etc?

    Thanks,...
  9. Replies
    1
    Views
    2,032

    Password verification

    I need to create a password verification program for a web application, and I'm not really sure where to start. Does anyone have any suggestions on what I should/need to do, particularly how I...
  10. Replies
    3
    Views
    955

    ok, thanks for your help. I guess I'll try to...

    ok, thanks for your help.
    I guess I'll try to forget my OCD desire to save every single byte of memory and just use a vector of pointers.
  11. Replies
    3
    Views
    955

    Polymorphism question

    I'm currently working on a web application in which I have an Element class for objects on the page, and Tag classes for the HTML tags that make up those page objects:


    #include <string>
    using...
Results 1 to 11 of 11